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
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
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 the pyarrow version is now the same for all Python versions, you can combine these two lines into a single line without the Python version markers. This simplifies the requirements file.

pyarrow==23.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.

@tswast I have concerns over changes of pyarrow versions. PTAL and let us know if they look good to you.

Loading