-
Notifications
You must be signed in to change notification settings - Fork 0
Bump urllib3 from 1.26.18 to 2.7.0 #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Stale types-urllib3 stubs conflict with urllib3 2.xMedium Severity
Additional Locations (1)Reviewed by Cursor Bugbot for commit b1eeb29. Configure here. |
||
| wandb==0.13.11 | ||
| wasabi==1.1.3 | ||
| wcwidth==0.2.13 | ||
|
|
||


There was a problem hiding this comment.
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.0requires Python 3.10 or later, but the project'ssetup.cfgdeclarespython_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 whoseRequires-Pythonmetadata doesn't match the running interpreter. This effectively breaks the project for two of its three supported Python versions.Reviewed by Cursor Bugbot for commit b1eeb29. Configure here.