Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 346fbc4

Browse files
chore: use === in requirements.txt for environment specific pins (#1184)
* chore(deps): update all dependencies * chore(deps): use === in requirements.txt for environment specific pins Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent fe16ec0 commit 346fbc4

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

samples/geography/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ libcst==0.4.1
2424
munch==2.5.0
2525
mypy-extensions==0.4.3
2626
packaging==21.3
27-
pandas==1.3.5; python_version == '3.7'
27+
pandas==1.3.5; python_version === '3.7'
2828
pandas==1.4.1; python_version >= '3.8'
2929
proto-plus==1.20.3
3030
protobuf==3.19.4

samples/magics/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ db-dtypes==1.0.0
22
google-cloud-bigquery-storage==2.13.0
33
google-auth-oauthlib==0.5.1
44
grpcio==1.44.0
5-
ipython==7.31.1; python_version == '3.7'
6-
ipython==8.0.1; python_version == '3.8'
5+
ipython==7.31.1; python_version === '3.7'
6+
ipython==8.0.1; python_version === '3.8'
77
ipython==8.2.0; python_version >= '3.9'
88
matplotlib==3.5.1
9-
pandas==1.3.5; python_version == '3.7'
9+
pandas==1.3.5; python_version === '3.7'
1010
pandas==1.4.1; python_version >= '3.8'
1111
pyarrow==7.0.0
1212
pytz==2022.1

samples/snippets/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ db-dtypes==1.0.0
22
google-cloud-bigquery-storage==2.13.0
33
google-auth-oauthlib==0.5.1
44
grpcio==1.44.0
5-
ipython==7.31.1; python_version == '3.7'
6-
ipython==8.0.1; python_version == '3.8'
5+
ipython==7.31.1; python_version === '3.7'
6+
ipython==8.0.1; python_version === '3.8'
77
ipython==8.2.0; python_version >= '3.9'
88
matplotlib==3.5.1
9-
pandas==1.3.5; python_version == '3.7'
9+
pandas==1.3.5; python_version === '3.7'
1010
pandas==1.4.1; python_version >= '3.8'
1111
pyarrow==7.0.0
1212
pytz==2022.1

0 commit comments

Comments
 (0)