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
3 changes: 2 additions & 1 deletion test_requirements/requirements_311_core.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
requests==2.25.1
pytest==7.4.4
narwhals>=1.15.1
narwhals>=1.15.1
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 added dependency urllib3>=2.6.0 conflicts with requests==2.25.1 (from line 1), which has a requirement of urllib3<1.27. This will cause dependency resolution to fail during installation.

To fix this, requests must be upgraded to a version compatible with urllib3 v2 (e.g., requests>=2.30.0). Since this is an automated PR, you may need to manually intervene to upgrade requests in this file and other similar requirement files across the repository.