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 a major version bump. According to the release notes, pytest 9.0 and later requires Python 3.10 or higher, dropping support for Python 3.9 and older. This project's test matrix includes Python versions 3.7, 3.8, and 3.9, which will cause build failures. You should either constrain the pytest version for older Python versions or update the project's supported Python versions.

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.34.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 a major version bump which introduces breaking changes. According to the release notes and its packaging information, pandas 3.x requires Python 3.11 or higher. This project's test matrix includes older Python versions (such as 3.7, 3.8, 3.9, 3.10), which will cause build failures. You should either constrain the pandas version for older Python versions or update the project to only support Python >= 3.11.

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 both pyarrow dependencies now point to the same version, you can merge them into a single line and remove the Python version specifiers for better readability and easier maintenance.

pyarrow==23.0.1

Loading