Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .ci/docker/requirements-ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ torchsr==1.0.4
transformers==4.56.1
zstd==1.5.5.1
pandas>=2.2.2; python_version >= '3.10'
pytest==7.2.0
pytest-cov==4.1.0
pytest==9.0.3
pytest-cov==6.1.1
expecttest==0.1.6
hypothesis==6.84.2
hypothesis==6.131.15
Comment on lines +12 to +15
Copy link

Copilot AI Apr 27, 2026

Choose a reason for hiding this comment

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

After bumping CI to pytest 9.x, the repo’s development requirements are now inconsistent: requirements-dev.txt still caps pytest<9.0. This makes it harder to reproduce CI failures locally and can lead to dependency resolver conflicts for contributors. Consider updating/removing that cap in the same PR (or explicitly linking a landed follow-up) so dev and CI environments stay aligned.

Copilot uses AI. Check for mistakes.
parameterized==0.9.0

# Doc build requirements, same as https://github.com/pytorch/pytorch/blob/main/.ci/docker/requirements-docs.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ certifi # Imported by resolve_buck.py.
lintrunner==0.12.7
lintrunner-adapters==0.13.0

pytest<9.0
pytest
pytest-xdist
pytest-rerunfailures==15.1
pytest-json-report
Loading