Skip to content
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
1 change: 1 addition & 0 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ moto>=2.2.6
pre-commit
-r extras/yaml.txt
-r extras/msgpack.txt
cryptography>=46.0.6 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Avoid forcing cryptography>=46 in Python 3.7 test envs

This new unconditional requirement applies to every tox environment that installs requirements/test.txt, including the Python 3.7 jobs still configured in tox.ini and .github/workflows/python-package.yml. cryptography 46.x no longer provides Python 3.7-compatible distributions, so this bound makes dependency resolution fail before tests run in those environments. The version floor should be guarded with a Python-version marker (or equivalent split constraint) so 3.7 jobs can still install dependencies.

Useful? React with 👍 / 👎.

Loading