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_enhanced.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ tqdm==4.66.5

# Utilities
colorama==0.4.6
urllib3>=2.6.3 # 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.

medium

For better dependency management and to ensure reproducible builds, it's recommended to pin urllib3 to an exact version (==2.6.3) instead of using a greater-than-or-equal-to constraint (>=2.6.3). This file appears to be for pinning dependencies, as most other packages use ==. Pinning the version prevents unexpected updates that could introduce breaking changes or new issues.

urllib3==2.6.3 # not directly required, pinned by Snyk to avoid a vulnerability

Loading