Skip to content
Closed
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ idna==3.10
iniconfig==2.1.0
packaging==25.0
pluggy==1.6.0
pytest==8.4.2
pytest==9.0.3
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep pytest requirement compatible with Python 3.9 support

requirements.txt is fed directly into install_requires in setup.py, while the package still declares python_requires=">=3.9"; pinning pytest==9.0.3 breaks that contract because pytest 9 requires Python 3.10+. On any Python 3.9 environment, dependency resolution will fail during installation/testing, so this change effectively drops a still-advertised supported interpreter without updating package metadata.

Useful? React with 👍 / 👎.

python-dateutil==2.9.0.post0
requests==2.32.5
six==1.17.0
Expand Down
Loading