Skip to content
Merged
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 samples/cloud-client/snippets/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
google-cloud-compute==1.42.0
google-cloud-storage==3.8.0
google-auth==2.47.0
google-cloud-compute==1.43.0
google-cloud-storage==3.9.0
google-auth==2.48.0
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The update to google-auth==2.48.0 introduces a mandatory dependency on the cryptography library. Modern versions of cryptography (41.0.0+) have dropped support for Python 3.7. Since the project's noxfile.py still includes Python 3.7 in its test matrix (line 63), this update will likely cause the 3.7 test session to fail during dependency installation. It is recommended to remove Python 3.7 from the supported versions in noxfile.py or use environment markers in requirements.txt to pin a compatible version for older interpreters.

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