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/cloud-client/snippets/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
google-cloud-compute==1.40.0
google-cloud-compute==1.41.0
google-cloud-storage==3.7.0
google-auth==2.45.0
google-auth==2.47.0
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

The updated dependency google-auth==2.47.0 requires Python 3.8 or newer, dropping support for Python 3.7. The test configuration in samples/cloud-client/snippets/noxfile.py includes Python 3.7 in its test matrix, which will cause the CI build to fail for that version. To resolve this, you should use Python version markers to install google-auth==2.45.0 (the previous version) for Python 3.7, and 2.47.0 for Python 3.8 and newer, similar to how pytest is handled in this file.

google-auth==2.45.0; python_version < '3.8'
google-auth==2.47.0; python_version >= '3.8'

pytest===8.4.2; python_version == '3.9'
pytest==9.0.2; python_version > '3.9'
boto3>=1.26.0
Expand Down