Skip to content
Closed
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.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ setuptools>=70.0.0 # Required to avoid known vulnerabilities
# mss # Screenshot capturing for inference UI
# albumentations>=1.0.3 # Powerful image augmentation library
# pycocotools>=2.0.6 # COCO dataset metrics (mAP, etc.)
urllib3>=2.6.0 # not directly required, pinned by Snyk to avoid a vulnerability

Choose a reason for hiding this comment

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

πŸ’‘ MEDIUM: This project may support Python versions where urllib3>=2.6.0 is not installable/compatible (urllib3 2.x has dropped older Python/OpenSSL combos in the past). A hard minimum here can break installs even if the vulnerable transitive path isn’t present. Consider aligning the constraint with the repo’s supported Python range (e.g., conditional marker) or pinning only in the environments that need it (CI/dev), if applicable.

Loading