Skip to content

Commit 9b86c29

Browse files
authored
chore(bigquery): bump pyarrow to 24.0.0 to fix dependabot alert (#14392)
* chore(bigquery): bump pyarrow to 24.0.0 to fix dependabot alert - Bumped `pyarrow` to 24.0.0 in `bigquery/bqml`, `bigquery/pandas-gbq-migration`, and `bigquery_storage/to_dataframe` to address a Dependabot vulnerability. - Simplified dependency entries by removing Python version constraints for `pyarrow`. * Remove === from requirements file for regular ==
1 parent a0bdfa6 commit 9b86c29

3 files changed

Lines changed: 11 additions & 15 deletions

File tree

bigquery/bqml/requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ google-cloud-bigquery[pandas,bqstorage]==3.27.0
22
google-cloud-bigquery-storage==2.27.0
33
pandas==2.0.3; python_version == '3.8'
44
pandas==2.2.3; python_version > '3.8'
5-
pyarrow==17.0.0; python_version <= '3.8'
6-
pyarrow==20.0.0; python_version > '3.9'
5+
pyarrow==24.0.0
76
flaky==3.8.1
87
mock==5.1.0

bigquery/pandas-gbq-migration/requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ pandas==2.2.3; python_version > '3.8'
55
pandas-gbq==0.24.0
66
grpcio==1.70.0; python_version == '3.8'
77
grpcio==1.74.0; python_version > '3.8'
8-
pyarrow==17.0.0; python_version <= '3.8'
9-
pyarrow==20.0.0; python_version > '3.9'
8+
pyarrow==24.0.0
Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
google-auth==2.40.3
22
google-cloud-bigquery-storage==2.32.0
3-
google-cloud-bigquery===3.30.0; python_version <= '3.8'
3+
google-cloud-bigquery==3.30.0; python_version <= '3.8'
44
google-cloud-bigquery==3.35.1; python_version >= '3.9'
5-
pyarrow===12.0.1; python_version == '3.7'
6-
pyarrow===17.0.0; python_version == '3.8'
7-
pyarrow==21.0.0; python_version >= '3.9'
8-
ipython===7.31.1; python_version == '3.7'
9-
ipython===8.10.0; python_version == '3.8'
10-
ipython===8.18.1; python_version == '3.9'
11-
ipython===8.33.0; python_version == '3.10'
5+
pyarrow==24.0.0
6+
ipython==7.31.1; python_version == '3.7'
7+
ipython==8.10.0; python_version == '3.8'
8+
ipython==8.18.1; python_version == '3.9'
9+
ipython==8.33.0; python_version == '3.10'
1210
ipython==9.4.0; python_version >= '3.11'
1311
ipywidgets==8.1.7
14-
pandas===1.3.5; python_version == '3.7'
15-
pandas===2.0.3; python_version == '3.8'
12+
pandas==1.3.5; python_version == '3.7'
13+
pandas==2.0.3; python_version == '3.8'
1614
pandas==2.3.1; python_version >= '3.9'
1715
tqdm==4.67.1
18-
db-dtypes===1.4.2; python_version <= '3.8'
16+
db-dtypes==1.4.2; python_version <= '3.8'
1917
db-dtypes==1.4.3; python_version >= '3.9'

0 commit comments

Comments
 (0)