Discussion:
[Fab-user] Fabric update to version :- 1.9.1
Kaushal Shriyan
2014-08-25 10:23:46 UTC
Permalink
Hi,

I am running fab version 1.9.0. Do i need to update it to 1.9.1 as per
http://www.fabfile.org/changelog.html#changelog ?

Regards,

Kaushal
Jeff Forcier
2014-08-25 15:58:13 UTC
Permalink
Hi Kaushal,

Upgrading is always your choice :) As you can see, 1.9.1 added a lot
of bug fixes, so it's probably a good idea. But 1.9.0 will still work
fine if you are not encountering any of those specific bugs!

Best,
Jeff

On Mon, Aug 25, 2014 at 3:23 AM, Kaushal Shriyan
Post by Kaushal Shriyan
Hi,
I am running fab version 1.9.0. Do i need to update it to 1.9.1 as per
http://www.fabfile.org/changelog.html#changelog ?
Regards,
Kaushal
_______________________________________________
Fab-user mailing list
https://lists.nongnu.org/mailman/listinfo/fab-user
--
Jeff Forcier
Unix sysadmin; Python/Ruby engineer
http://bitprophet.org
Kaushal Shriyan
2014-08-26 05:50:24 UTC
Permalink
Post by Jeff Forcier
Hi Kaushal,
Upgrading is always your choice :) As you can see, 1.9.1 added a lot
of bug fixes, so it's probably a good idea. But 1.9.0 will still work
fine if you are not encountering any of those specific bugs!
Best,
Jeff
Hi Jeff,

I am encountering the below issue.

MacBook-Pro-2:~ kaushal$ fab -V
Fabric 1.9.0
Paramiko 1.14.0
MacBook-Pro-2:~ kaushal$ sudo pip install fab
Password:
Downloading/unpacking fab
Could not find any downloads that satisfy the requirement fab
Cleaning up...
No distributions at all found for fab
Storing complete log in /Users/kaushal/Library/Logs/pip.log
MacBook-Pro-2:~ kaushal$ cat /Users/kaushal/Library/Logs/pip.log
------------------------------------------------------------
/usr/local/bin/pip run on Tue Aug 26 11:16:04 2014
Downloading/unpacking fab

Getting page https://pypi.python.org/simple/fab/
Could not fetch URL https://pypi.python.org/simple/fab/: HTTP Error 404:
Not Found
Will skip URL https://pypi.python.org/simple/fab/ when looking for
download links for fab
Getting page https://pypi.python.org/simple/
URLs to search for versions for fab:
* https://pypi.python.org/simple/fab/
Getting page https://pypi.python.org/simple/fab/
Could not fetch URL https://pypi.python.org/simple/fab/: HTTP Error 404:
Not Found
Will skip URL https://pypi.python.org/simple/fab/ when looking for
download links for fab
Could not find any downloads that satisfy the requirement fab

Cleaning up...

Removing temporary dir /private/tmp/pip_build_root...
No distributions at all found for fab

Exception information:
Traceback (most recent call last):
File
"/Library/Python/2.7/site-packages/pip-1.4.1-py2.7.egg/pip/basecommand.py",
line 134, in main
status = self.run(options, args)
File
"/Library/Python/2.7/site-packages/pip-1.4.1-py2.7.egg/pip/commands/install.py",
line 236, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle,
bundle=self.bundle)
File "/Library/Python/2.7/site-packages/pip-1.4.1-py2.7.egg/pip/req.py",
line 1085, in prepare_files
url = finder.find_requirement(req_to_install, upgrade=self.upgrade)
File
"/Library/Python/2.7/site-packages/pip-1.4.1-py2.7.egg/pip/index.py", line
265, in find_requirement
raise DistributionNotFound('No distributions at all found for %s' % req)
DistributionNotFound: No distributions at all found for fab
MacBook-Pro-2:~ kaushal$

Please suggest.

Regards,

Kaushal
Post by Jeff Forcier
On Mon, Aug 25, 2014 at 3:23 AM, Kaushal Shriyan
Post by Kaushal Shriyan
Hi,
I am running fab version 1.9.0. Do i need to update it to 1.9.1 as per
http://www.fabfile.org/changelog.html#changelog ?
Regards,
Kaushal
_______________________________________________
Fab-user mailing list
https://lists.nongnu.org/mailman/listinfo/fab-user
--
Jeff Forcier
Unix sysadmin; Python/Ruby engineer
http://bitprophet.org
Alexander Fortin
2014-08-26 07:02:57 UTC
Permalink
On Tue, Aug 26, 2014 at 7:50 AM, Kaushal Shriyan
Post by Kaushal Shriyan
Hi Jeff,
I am encountering the below issue.
Ehem... http://www.fabfile.org/installing.html

To upgrade, I do:

$ sudo pip install --upgrade Fabric
Downloading/unpacking Fabric from
https://pypi.python.org/packages/source/F/Fabric/Fabric-1.9.1.tar.gz#md5=434dfbdc47c160946c8a71d966526422
Downloading Fabric-1.9.1.tar.gz (219kB): 219kB downloaded
Running setup.py egg_info for package Fabric

warning: no previously-included files matching '*' found under
directory 'sites/docs/_build'
warning: no previously-included files matching '*' found under
directory 'sites/www/_build'
warning: no previously-included files matching '*.pyc' found under
directory 'tests'
warning: no previously-included files matching '*.pyo' found under
directory 'tests'
Requirement already up-to-date: paramiko>=1.10 in
/usr/local/lib/python2.7/dist-packages (from Fabric)
Requirement already up-to-date: pycrypto>=2.1,!=2.4 in
/usr/local/lib/python2.7/dist-packages (from paramiko>=1.10->Fabric)
Requirement already up-to-date: ecdsa in
/usr/local/lib/python2.7/dist-packages (from paramiko>=1.10->Fabric)
Installing collected packages: Fabric
Found existing installation: Fabric 1.9.0
Uninstalling Fabric:
Successfully uninstalled Fabric
Running setup.py install for Fabric

warning: no previously-included files matching '*' found under
directory 'sites/docs/_build'
warning: no previously-included files matching '*' found under
directory 'sites/www/_build'
warning: no previously-included files matching '*.pyc' found under
directory 'tests'
warning: no previously-included files matching '*.pyo' found under
directory 'tests'
Installing fab script to /usr/local/bin
Successfully installed Fabric
Cleaning up...
Kaushal Shriyan
2014-08-26 07:08:51 UTC
Permalink
On Tue, Aug 26, 2014 at 12:32 PM, Alexander Fortin <
Post by Alexander Fortin
On Tue, Aug 26, 2014 at 7:50 AM, Kaushal Shriyan
Post by Kaushal Shriyan
Hi Jeff,
I am encountering the below issue.
Ehem... http://www.fabfile.org/installing.html
$ sudo pip install --upgrade Fabric
Downloading/unpacking Fabric from
https://pypi.python.org/packages/source/F/Fabric/Fabric-1.9.1.tar.gz#md5=434dfbdc47c160946c8a71d966526422
Downloading Fabric-1.9.1.tar.gz (219kB): 219kB downloaded
Running setup.py egg_info for package Fabric
warning: no previously-included files matching '*' found under
directory 'sites/docs/_build'
warning: no previously-included files matching '*' found under
directory 'sites/www/_build'
warning: no previously-included files matching '*.pyc' found under
directory 'tests'
warning: no previously-included files matching '*.pyo' found under
directory 'tests'
Requirement already up-to-date: paramiko>=1.10 in
/usr/local/lib/python2.7/dist-packages (from Fabric)
Requirement already up-to-date: pycrypto>=2.1,!=2.4 in
/usr/local/lib/python2.7/dist-packages (from paramiko>=1.10->Fabric)
Requirement already up-to-date: ecdsa in
/usr/local/lib/python2.7/dist-packages (from paramiko>=1.10->Fabric)
Installing collected packages: Fabric
Found existing installation: Fabric 1.9.0
Successfully uninstalled Fabric
Running setup.py install for Fabric
warning: no previously-included files matching '*' found under
directory 'sites/docs/_build'
warning: no previously-included files matching '*' found under
directory 'sites/www/_build'
warning: no previously-included files matching '*.pyc' found under
directory 'tests'
warning: no previously-included files matching '*.pyo' found under
directory 'tests'
Installing fab script to /usr/local/bin
Successfully installed Fabric
Cleaning up...
Hi Alexander,

Thanks for the reply and it worked like a charm.

MacBook-Pro-2:~ kaushal$ sudo pip install --upgrade Fabric
Password:
Downloading/unpacking Fabric from
https://pypi.python.org/packages/source/F/Fabric/Fabric-1.9.1.tar.gz#md5=434dfbdc47c160946c8a71d966526422
Downloading Fabric-1.9.1.tar.gz (219kB): 219kB downloaded
Running setup.py egg_info for package Fabric

warning: no previously-included files matching '*' found under
directory 'sites/docs/_build'
warning: no previously-included files matching '*' found under
directory 'sites/www/_build'
warning: no previously-included files matching '*.pyc' found under
directory 'tests'
warning: no previously-included files matching '*.pyo' found under
directory 'tests'
Downloading/unpacking paramiko>=1.10 from
https://pypi.python.org/packages/source/p/paramiko/paramiko-1.14.1.tar.gz#md5=6165e0274f9e4e4b82d9b44e793d8fc6
(from Fabric)
Downloading paramiko-1.14.1.tar.gz (1.1MB): 1.1MB downloaded
Running setup.py egg_info for package paramiko

Requirement already up-to-date: pycrypto>=2.1,!=2.4 in
/Library/Python/2.7/site-packages (from paramiko>=1.10->Fabric)
Requirement already up-to-date: ecdsa in /Library/Python/2.7/site-packages
(from paramiko>=1.10->Fabric)
Installing collected packages: Fabric, paramiko
Found existing installation: Fabric 1.9.0
Uninstalling Fabric:
Successfully uninstalled Fabric
Running setup.py install for Fabric

warning: no previously-included files matching '*' found under
directory 'sites/docs/_build'
warning: no previously-included files matching '*' found under
directory 'sites/www/_build'
warning: no previously-included files matching '*.pyc' found under
directory 'tests'
warning: no previously-included files matching '*.pyo' found under
directory 'tests'
Installing fab script to /usr/local/bin
Found existing installation: paramiko 1.14.0
Uninstalling paramiko:
Successfully uninstalled paramiko
Running setup.py install for paramiko

Successfully installed Fabric paramiko
Cleaning up...
MacBook-Pro-2:~ kaushal$ fab -V
Fabric 1.9.1
Paramiko 1.14.1
MacBook-Pro-2:~ kaushal$

Regards,

Kaushal

Loading...