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 python/docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ jinja2==3.0.0
sphinx==2.3.1
sphinx_rtd_theme==0.4.3
sphinxcontrib-napoleon==0.7
requests>=2.33.0 # 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.

New requests version incompatible with project Python version

Medium Severity

requests>=2.33.0 dropped support for Python 3.9 and below, but the sibling environment.yml pins python=3.7.6 and the project's setup.py declares python_requires='>=3.7'. This will likely cause the docs dependency installation to fail on the Python versions this project targets, since pip will refuse to install requests>=2.33.0 on Python <3.10.

Fix in Cursor Fix in Web

Loading