-
Notifications
You must be signed in to change notification settings - Fork 663
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
remove cryptography version pinning due to paramiko newer than 2.11.0 #1109
Conversation
I would like this change as well, as I'm running into some annoying dependency conflicts. |
I would like this as well |
Any reason why this PR is still blocked? |
# Pinning cryptography should not be needed after paramiko 2.11.0. | ||
'cryptography == 36.0.2', | ||
# Pinning cryptography is not needed after paramiko 2.11.0. Correct it | ||
'cryptography >= 1.0.0', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If pinning is not needed, I think we can just delete this line, because we didn't depend on cryptography directly from code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I commit this pull request 11 months ago, at that time, I checked the commit history and found that cryptography >= 1.0.0
had been there before, and the version pinning to ==36.0.2
is edited from >= 1.0.0
, so I thought it is better to revert to >= 1.0.0
than directly delete it.
Now that 11 months has passed and there are a lot of new commits, if it is better to directly delete this line, I will happily agree with it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
apologies for the delay 🥺
can you resolve the conflict as well? thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
apologies for the delay 🥺
can you resolve the conflict as well? thanks
Do you mean the "Resolve conversation" button below?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! |
Description
according to pull request #1055 and file setup.py
# Pinning cryptography should not be needed after paramiko 2.11.0.
Now that paramiko's version is 3.1.0, arch package python-paramiko version is 2.11.1, both newer than 2.11.0, so remove cryptography version pinning.
Checklist
changelog.md
.AUTHORS
file (or it's already there).