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==23.0.1; python_version <= '3.8'
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

Python versions below 3.10 are no longer supported in this repository. Please do not specify fallback dependency versions or environment markers for Python versions older than 3.10. Since pyarrow 23.0.1 is compatible with Python 3.10+, we can simplify this requirement by removing the environment markers.

pyarrow==23.0.1
References
  1. Do not specify fallback dependency versions or environment markers for Python versions older than 3.10, as Python versions below 3.10 are no longer supported.

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==23.0.1; python_version <= '3.8'
pyarrow==23.0.1; 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.

medium

Python versions below 3.10 are no longer supported in this repository. Please do not specify fallback dependency versions or environment markers for Python versions older than 3.10. Since pyarrow 23.0.1 is compatible with Python 3.10+, we can simplify this requirement by removing the environment markers.

pyarrow==23.0.1
References
  1. Do not specify fallback dependency versions or environment markers for Python versions older than 3.10, as Python versions below 3.10 are no longer supported.

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==23.0.1; python_version >= '3.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.

medium

Python versions below 3.10 are no longer supported in this repository. Please do not specify fallback dependency versions or environment markers for Python versions older than 3.10. Since pyarrow 23.0.1 is compatible with Python 3.10+, we can simplify this requirement by removing the environment markers.

pyarrow==23.0.1
References
  1. Do not specify fallback dependency versions or environment markers for Python versions older than 3.10, as Python versions below 3.10 are no longer supported.

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