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 references/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ fastprogress>=0.1.21
wandb>=0.10.31
psutil>=5.9.0
clearml>=1.11.1
urllib3>=2.6.0 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link

Choose a reason for hiding this comment

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

Bug: urllib3 2.6 incompatible with project's Python 3.8 support

The project declares support for Python 3.8+ in pyproject.toml (requires-python = ">=3.8.0,<4"), but urllib3>=2.6.0 requires Python 3.9+. This creates an incompatibility - installations on Python 3.8 will fail to resolve dependencies since urllib3 2.3+ dropped Python 3.8 support. The version constraint needs to be adjusted to maintain Python 3.8 compatibility or the project's minimum Python version needs to be updated.

Fix in Cursor Fix in Web

Loading