-
Notifications
You must be signed in to change notification settings - Fork 9
[Snyk] Security upgrade requests from 2.31.0 to 2.33.0 #191
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: master
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 |
|---|---|---|
|
|
@@ -3,3 +3,4 @@ web3 >= 4.8 | |
| Pillow | ||
| stellar-sdk>=4.0.0,<6.0.0 | ||
| rlp>=1.1.0 ; python_version<'3.7' | ||
| requests>=2.33.0 # not directly required, pinned by Snyk to avoid a vulnerability | ||
|
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. Security fix applied to wrong file, ineffective for usersMedium Severity The |
||


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.
Requests 2.33.0 requires Python 3.10+, breaking older versions
High Severity
The pinned
requests>=2.33.0requires Python 3.10+, but this project supports Python 3.6+ (persetup.py'spython_requires=">=3.6"). The tox configuration runsfullenvironments (which installrequirements-optional.txt) on py36 through py39. On those Python versions, pip will fail to find anyrequestsversion satisfying>=2.33.0, breaking dependency resolution and the CI test matrix for four out of five tested Python versions. Apython_versionenvironment marker is needed to restrict this constraint to Python 3.10+.