Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
lock paramiko to set version to resolve gssapi incompatibility (#11)
Browse files Browse the repository at this point in the history
This will resolve the bug found when a user has the gssapi library
installed and then tries to run paws. When they go to run paws, it
will fail with a paramiko exception. Rolling back the version resolves
this bug. To note: paws does not require gssapi. We will upgrade to
the latest version of paramiko once they fix the bug.

More information can be referenced in #9
  • Loading branch information
ryankwilliams committed Feb 19, 2018
1 parent fdc68d8 commit 5c3809b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def get_version():
'paws.providers',
'paws.tasks'
],
install_requires=['paramiko',
install_requires=['paramiko==2.2.1',
'pywinrm',
'click',
'apache-libcloud',
Expand Down

0 comments on commit 5c3809b

Please sign in to comment.