Skip to content
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
6 changes: 4 additions & 2 deletions samples/snippets/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
backoff==2.2.1
pytest===7.4.4; python_version == '3.7'
pytest==8.2.2; python_version >= '3.8'
pytest===7.4.3; python_version == '3.7'
pytest===8.3.5; python_version == '3.8'
pytest===8.4.2; python_version == '3.9'
pytest==9.0.2; python_version >= '3.10'
10 changes: 6 additions & 4 deletions samples/snippets/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
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.30.0; python_version <= '3.8'
google-cloud-bigquery==3.40.1; python_version >= '3.9'
google-cloud-storage==3.9.0
Copy link
Contributor

Choose a reason for hiding this comment

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

high

This update of google-cloud-storage from 2.17.0 to 3.9.0 is a major version bump (v2 to v3). Such updates frequently introduce breaking API changes. The code snippets that rely on this package may no longer work correctly without modifications. For example, method signatures or class names might have changed.

google-cloud-pubsub===2.34.0; python_version <= '3.8'
google-cloud-pubsub==2.35.0; python_version >= '3.9'