Skip to content
Open
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 bigquery/bqml/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ google-cloud-bigquery[pandas,bqstorage]==3.27.0
google-cloud-bigquery-storage==2.27.0
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pyarrow==17.0.0; python_version <= '3.8'
pyarrow==20.0.0; python_version > '3.9'
pyarrow==24.0.0; python_version <= '3.8'
pyarrow==24.0.0; 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.

high

pyarrow version 24.0.0 does not support Python 3.8 (support for Python 3.8 was dropped in version 17.0.0/18.0.0). Pinning this version for Python 3.8 will cause installation failures. Additionally, the environment marker > '3.9' creates a gap where pyarrow is not installed for Python 3.9. It is recommended to keep the previous version for Python 3.8 and use >= '3.9' for the updated version to ensure compatibility and full coverage across Python versions.

pyarrow==17.0.0; python_version <= '3.8'
pyarrow==24.0.0; python_version >= '3.9'

flaky==3.8.1
mock==5.1.0
4 changes: 2 additions & 2 deletions bigquery/pandas-gbq-migration/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ pandas==2.2.3; python_version > '3.8'
pandas-gbq==0.24.0
grpcio==1.70.0; python_version == '3.8'
grpcio==1.74.0; python_version > '3.8'
pyarrow==17.0.0; python_version <= '3.8'
pyarrow==20.0.0; python_version > '3.9'
pyarrow==24.0.0; python_version <= '3.8'
pyarrow==24.0.0; python_version > '3.9'
Comment on lines +8 to +9
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.

high

pyarrow version 24.0.0 does not support Python 3.8 (support for Python 3.8 was dropped in version 17.0.0/18.0.0). Pinning this version for Python 3.8 will cause installation failures. Additionally, the environment marker > '3.9' creates a gap where pyarrow is not installed for Python 3.9. It is recommended to keep the previous version for Python 3.8 and use >= '3.9' for the updated version to ensure compatibility and full coverage across Python versions.

pyarrow==17.0.0; python_version <= '3.8'
pyarrow==24.0.0; python_version >= '3.9'

2 changes: 1 addition & 1 deletion bigquery_storage/to_dataframe/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ google-cloud-bigquery===3.30.0; python_version <= '3.8'
google-cloud-bigquery==3.35.1; python_version >= '3.9'
pyarrow===12.0.1; python_version == '3.7'
pyarrow===17.0.0; python_version == '3.8'
pyarrow==21.0.0; python_version >= '3.9'
pyarrow==24.0.0; python_version >= '3.9'
ipython===7.31.1; python_version == '3.7'
ipython===8.10.0; python_version == '3.8'
ipython===8.18.1; python_version == '3.9'
Expand Down