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.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ fake-useragent==1.1.1
requests==2.23.0
stem==1.8.0
colorama==0.4.3
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.

critical

This upgrade to urllib3>=2.6.0 creates a dependency conflict. The requests library at version 2.23.0 (specified on line 2) has a requirement for urllib3<1.26. The new requirement for urllib3>=2.6.0 is incompatible with this, which will cause dependency resolution to fail when you try to install packages.

To fix this, you must also upgrade the requests package to a version that is compatible with urllib3 v2.x. For example, you could upgrade requests to version 2.30.0 or newer.