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-ci-base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ codecov
-r extras/pymemcache.txt
-r extras/thread.txt
-r extras/auth.txt
requests>=2.33.0 # 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.

requests 2.33.0 requires Python 3.10+, breaking older Python CI

High Severity

The pinned requests>=2.33.0 requires Python 3.10+, but this project supports Python 3.7+ (per setup.py python_requires=">=3.7" and tox.ini test matrix). The test-ci-base.txt file is included by test-ci-default.txt, which is used for Python 3.7, 3.8, and 3.9 CI environments. Installing requests>=2.33.0 on those Python versions will fail, breaking CI for all pre-3.10 environments.

Fix in Cursor Fix in Web

Loading