Skip to content
This repository was archived by the owner on Feb 26, 2026. It is now read-only.
Closed
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
4 changes: 2 additions & 2 deletions samples/snippets/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
backoff==2.2.1
pytest===7.4.4; python_version == '3.7'
pytest==8.2.2; python_version >= '3.8'
pytest===8.4.2; python_version == '3.9'
pytest==9.0.2; python_version >= '3.10'
Comment on lines +2 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

high

The updated requirements-test.txt removes pytest specifications for python_version == '3.7' and python_version == '3.8'. According to setup.py and samples/snippets/noxfile.py, Python 3.7 and 3.8 are still supported. This change will cause test failures for these Python environments due to missing pytest dependency. Please ensure all supported Python versions have a corresponding pytest entry. pytest 9.0.2 supports Python 3.8 and newer, and pytest 7.4.4 supports Python 3.7.

pytest===7.4.4; python_version == '3.7'
pytest==9.0.2; python_version >= '3.8'

8 changes: 4 additions & 4 deletions samples/snippets/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
google-cloud-logging==3.10.0
google-cloud-bigquery==3.25.0
google-cloud-storage==2.17.0
google-cloud-pubsub==2.22.0
google-cloud-logging==3.13.0
google-cloud-bigquery==3.40.1
google-cloud-storage==3.9.0
google-cloud-pubsub==2.35.0