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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ tzdata==2024.1
uncertainty-calibration==0.1.4
Unidecode==1.3.6
uritemplate==4.1.1
urllib3==1.26.18
urllib3==2.7.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

urllib3 2.7.0 requires Python 3.10 but project supports 3.8+

High Severity

urllib3==2.7.0 requires Python 3.10 or later, but the project's setup.cfg declares python_requires = >=3.8,<3.11, meaning it claims to support Python 3.8 and 3.9. Installing this pinned requirements file on Python 3.8 or 3.9 will fail because pip will refuse to install a package whose Requires-Python metadata doesn't match the running interpreter. This effectively breaks the project for two of its three supported Python versions.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b1eeb29. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Stale types-urllib3 stubs conflict with urllib3 2.x

Medium Severity

types-urllib3==1.26.25.14 provides type stubs for the urllib3 1.x API, but urllib3==2.7.0 ships its own inline type annotations. Having both installed causes type-checking conflicts — the old stubs shadow the correct built-in types. The types-urllib3 PyPI page explicitly warns to uninstall it when using urllib3 2.0+. This package needs to be removed now that urllib3 is at 2.7.0.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b1eeb29. Configure here.

wandb==0.13.11
wasabi==1.1.3
wcwidth==0.2.13
Expand Down