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
4 changes: 2 additions & 2 deletions samples/compute/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==7.4.4; python_version == '3.7'
pytest==8.2.2; python_version >= '3.8'
pytest==9.0.3; python_version == '3.7'
pytest==9.0.3; python_version >= '3.8'
Comment on lines +1 to +2
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

The update to pytest==9.0.3 is incompatible with Python 3.7, 3.8, and 3.9. pytest 9.x requires Python 3.10 or newer (support for 3.8 was dropped in 8.4.0, and 3.9 in 9.0.0). Since noxfile.py indicates these versions are still supported, this change will break the build for those environments. Use environment markers to maintain compatibility for older Python versions while applying the security update to supported environments. Note that the security fix (CVE-2025-71176) is only available in pytest 9.0.3, so older Python versions will remain vulnerable.

pytest==7.4.4; python_version == '3.7'
pytest==8.2.2; python_version >= '3.8' and python_version < '3.10'
pytest==9.0.3; python_version >= '3.10'

flaky==3.8.1

Loading