Skip to content

Commit 6cbd5c0

Browse files
chore(deps): update all dependencies (#2096)
* chore(deps): update all dependencies * pin attrs===24.2.0 for python 3.7 * pin urllib3===2.2.3 for python 3.8 * pin matplotlib===3.9.2 for python 3.9 --------- Co-authored-by: Lingqing Gan <[email protected]>
1 parent aaf1eb8 commit 6cbd5c0

File tree

9 files changed

+29
-26
lines changed

9 files changed

+29
-26
lines changed

.kokoro/docker/docs/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# pip-compile --allow-unsafe --generate-hashes synthtool/gcp/templates/python_library/.kokoro/docker/docs/requirements.in
66
#
7-
argcomplete==3.5.2 \
8-
--hash=sha256:036d020d79048a5d525bc63880d7a4b8d1668566b8a76daf1144c0bbe0f63472 \
9-
--hash=sha256:23146ed7ac4403b70bd6026402468942ceba34a6732255b9edf5b7354f68a6bb
7+
argcomplete==3.5.3 \
8+
--hash=sha256:2ab2c4a215c59fd6caaff41a869480a23e8f6a5f910b266c1808037f4e375b61 \
9+
--hash=sha256:c12bf50eded8aebb298c7b7da7a5ff3ee24dffd9f5281867dfe1424b58c55392
1010
# via nox
1111
colorlog==6.9.0 \
1212
--hash=sha256:5906e71acd67cb07a71e779c47c4bcb45fb8c2993eebe9e5adcd6a6f1b283eff \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-testutils==1.4.0
1+
google-cloud-testutils==1.5.0
22
pytest===7.4.4; python_version == '3.7'
3-
pytest==8.3.3; python_version >= '3.8'
3+
pytest==8.3.4; python_version >= '3.8'
44
mock==5.1.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pytest===7.4.4; python_version == '3.7'
2-
pytest==8.3.3; python_version >= '3.8'
2+
pytest==8.3.4; python_version >= '3.8'
33
mock==5.1.0

samples/geography/requirements.txt

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
attrs==24.2.0
2-
certifi==2024.8.30
1+
attrs===24.2.0; python_version == '3.7'
2+
attrs==24.3.0; python_version >= '3.8'
3+
certifi==2024.12.14
34
cffi===1.15.1; python_version == '3.7'
45
cffi==1.17.1; python_version >= '3.8'
5-
charset-normalizer==3.4.0
6-
click==8.1.7
6+
charset-normalizer==3.4.1
7+
click==8.1.8
78
click-plugins==1.1.1
89
cligj==0.7.2
910
dataclasses==0.8; python_version < '3.7'
1011
db-dtypes==1.3.1
1112
Fiona===1.9.6; python_version == '3.7'
1213
Fiona==1.10.1; python_version >= '3.8'
13-
geojson==3.1.0
14+
geojson==3.2.0
1415
geopandas===0.10.2; python_version == '3.7'
1516
geopandas===0.13.2; python_version == '3.8'
1617
geopandas==1.0.1; python_version >= '3.9'
17-
google-api-core==2.23.0
18-
google-auth==2.36.0
18+
google-api-core==2.24.0
19+
google-auth==2.37.0
1920
google-cloud-bigquery==3.27.0
2021
google-cloud-bigquery-storage==2.27.0
2122
google-cloud-core==2.4.1
@@ -24,7 +25,7 @@ google-crc32c==1.6.0; python_version >= '3.9'
2425
google-resumable-media==2.7.2
2526
googleapis-common-protos==1.66.0
2627
grpcio===1.62.2; python_version == '3.7'
27-
grpcio==1.68.0; python_version >= '3.8'
28+
grpcio==1.68.1; python_version >= '3.8'
2829
idna==3.10
2930
munch==4.0.0
3031
mypy-extensions==1.0.0
@@ -44,7 +45,7 @@ pyasn1-modules==0.4.1; python_version >= '3.8'
4445
pycparser===2.21; python_version == '3.7'
4546
pycparser==2.22; python_version >= '3.8'
4647
pyparsing===3.1.4; python_version < '3.9'
47-
pyparsing==3.2.0; python_version >= '3.9'
48+
pyparsing==3.2.1; python_version >= '3.9'
4849
python-dateutil==2.9.0.post0
4950
pytz==2024.2
5051
PyYAML===6.0.1; python_version == '3.7'
@@ -53,9 +54,10 @@ requests==2.31.0; python_version == '3.7'
5354
requests==2.32.3; python_version >= '3.8'
5455
rsa==4.9
5556
Shapely==2.0.6
56-
six==1.16.0
57+
six==1.17.0
5758
typing-extensions===4.7.1; python_version == '3.7'
5859
typing-extensions==4.12.2; python_version >= '3.8'
5960
typing-inspect==0.9.0
6061
urllib3===1.26.18; python_version == '3.7'
61-
urllib3==2.2.3; python_version >= '3.8'
62+
urllib3===2.2.3; python_version == '3.8'
63+
urllib3==2.3.0; python_version >= '3.9'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-testutils==1.4.0
1+
google-cloud-testutils==1.5.0
22
pytest===7.4.4; python_version == '3.7'
3-
pytest==8.3.3; python_version >= '3.8'
3+
pytest==8.3.4; python_version >= '3.8'
44
mock==5.1.0

samples/magics/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bigquery_magics==0.4.0
1+
bigquery_magics==0.5.0
22
db-dtypes==1.3.1
33
google.cloud.bigquery==3.27.0
44
google-cloud-bigquery-storage==2.27.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-testutils==1.4.0
1+
google-cloud-testutils==1.5.0
22
pytest===7.4.4; python_version == '3.7'
3-
pytest==8.3.3; python_version >= '3.8'
3+
pytest==8.3.4; python_version >= '3.8'
44
mock==5.1.0

samples/notebooks/requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bigquery-magics==0.4.0
1+
bigquery-magics==0.5.0
22
db-dtypes==1.3.1
33
google-cloud-bigquery==3.27.0
44
google-cloud-bigquery-storage==2.27.0
@@ -7,7 +7,8 @@ ipython===8.0.1; python_version == '3.8'
77
ipython===8.18.1; python_version >= '3.9'
88
matplotlib===3.5.3; python_version == '3.7'
99
matplotlib===3.7.4; python_version == '3.8'
10-
matplotlib==3.9.2; python_version >= '3.9'
10+
matplotlib===3.9.2; python_version == '3.9'
11+
matplotlib==3.10.0; python_version >= '3.10'
1112
pandas===1.3.5; python_version == '3.7'
1213
pandas===2.0.3; python_version == '3.8'
1314
pandas==2.2.3; python_version >= '3.9'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# samples/snippets should be runnable with no "extras"
2-
google-cloud-testutils==1.4.0
2+
google-cloud-testutils==1.5.0
33
pytest===7.4.4; python_version == '3.7'
4-
pytest==8.3.3; python_version >= '3.8'
4+
pytest==8.3.4; python_version >= '3.8'
55
mock==5.1.0

0 commit comments

Comments
 (0)