Skip to content

Commit

Permalink
Bump public Paramiko requirement for file-like object transfer feature
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Nov 30, 2012
1 parent 54a1a8f commit ee1efc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
packages=find_packages(), packages=find_packages(),
test_suite='nose.collector', test_suite='nose.collector',
tests_require=['nose', 'fudge<1.0'], tests_require=['nose', 'fudge<1.0'],
install_requires=['paramiko>=1.9.0'], install_requires=['paramiko>=1.10.0'],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'fab = fabric.main:main', 'fab = fabric.main:main',
Expand Down

4 comments on commit ee1efc7

@jphalip
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pip-installation of fabric-dev is failing since this change as pypi doesn't contain version 1.10.0 for paramiko: http://pypi.python.org/pypi/paramiko

Downloading/unpacking paramiko>=1.10.0 (from Fabric->-r requirements.txt (line 76))
  Could not find a version that satisfies the requirement paramiko>=1.10.0 (from Fabric->-r requirements.txt (line 76)) (from versions: )
No distributions matching the version for paramiko>=1.10.0 (from Fabric->-r requirements.txt (line 76))

Perhaps this version was recently removed from Pypi? Is it worth opening an issue for this?

Thanks!

@bitprophet
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dev versions of Fabric will depend on dev versions of Paramiko too -- so just install Paramiko from git and problem solved :)

@TylerBrock
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Most likely this is being caused by not using proper sorting for versions. A version >=1.10.0 is available (in fact several are).

This is a bug. People want to use stable if they don't absolutely have to use dev.

@TylerBrock
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.