New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bcrypt dependency version should be 3.1.3 #990
Comments
Thanks for the report! |
LOL @ adding features in a bugfix release Requiring users to be on bcrypt 3.1.3 or newer doesn't seem super awful to me (esp given it's a brand new requirement as of Paramiko 2.2.0). Otherwise we have to do something mildly gross like a So I'm thinking we just bump the setup.py requirement for bcrypt up to 3.1.3. If there are no counterarguments I'll do that soon. |
Another thing I've done before is change the logging level for a particular module, e.g. logging.getLogger("bcrypt").setLevel(logging.ERROR) I'm not sure if that would work in this case, but if it did, it would allow to remove use of It does seem like bumping the requirement to bcrypt==3.1.3 isn't too bad, probably the simplest and best way to go. |
In my limited experience there's log-level warnings and then there's use of the |
bcrypt requirement bumped in just-released paramiko-2.2.1 |
Oh yea, I neglected to close the related tickets, my bad - thanks! |
Earlier versions don't support
ignore_few_rounds
parameter forkdf()
:That was with 3.1.2.
The text was updated successfully, but these errors were encountered: