Skip to content
This repository was archived by the owner on Mar 13, 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,2 +1,2 @@
google-cloud-testutils==1.6.4
pytest==8.4.2
google-cloud-testutils==1.7.0
pytest==9.0.2
Copy link
Copy Markdown
Contributor

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.2 is incompatible with this project's supported Python versions. According to the pytest 9.0.0 release notes, support for Python 3.9 has been dropped. This project still supports and tests against Python 3.9 (as defined in noxfile.py), which will cause CI failures. Please revert to a version of pytest that supports Python 3.9, like the previous version.

pytest==8.4.2

12 changes: 6 additions & 6 deletions samples/snippets/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
google-cloud-bigquery-storage==2.33.1
google-cloud-bigquery==3.38.0
pandas-gbq==0.29.2
pandas==2.3.3
pyarrow==21.0.0; python_version <= "3.9"
pyarrow==22.0.0; python_version > "3.9"
google-cloud-bigquery-storage==2.36.2
google-cloud-bigquery==3.40.1
pandas-gbq==0.33.0
pandas==3.0.1
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

The update to pandas==3.0.1 is incompatible with this project's supported Python versions. The pandas 3.0.0 release notes state that it requires Python 3.11 or higher. This project supports Python 3.9 and 3.10 (as defined in noxfile.py), so this upgrade will break the environment for those versions. Please revert to a pandas 2.x version.

pandas==2.3.3

pyarrow==23.0.1; python_version <= "3.9"
pyarrow==23.0.1; python_version > "3.9"
Comment on lines +5 to +6
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since pyarrow is now pinned to the same version for all Python versions, you can simplify these two lines into a single requirement without the version markers.

pyarrow==23.0.1

Loading