Skip to content
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

Unpin cryptography, and set minimum version to 44.0.1 #691

Open
wants to merge 1 commit into
base: release
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,14 @@ def get_include_files() -> List[Tuple[str, str]]:
# Dependencies
install_requires=[
"nassl>=5.3,<6",
"cryptography>=43,<45",
# cryptography doesn't use SemVer (they use browser versioning), and
# considers its declared API to be stable, even across major version
# changes. There may be breaking changes to address security issues,
# which has usually meant dropping support for old cryptographic
# primitives and protocols:
#
# https://cryptography.io/en/latest/api-stability/
"cryptography>=44.0.1",
"tls-parser>=2,<3",
"pydantic>=2.3,<3",
],
Expand Down