Skip to content

Commit f40cf77

Browse files
authored
chore: fix requirements pep440 syntax (#18348)
Renovate's PEP440 parser flags `===` (arbitrary equality) as an unsupported range error (`TypeError: PEP440 arbitrary equality (===) not supported`), surfacing a `WARN: Unexpected range error` section on the repository's Dependency Dashboard. Replacing legacy `===` typos with standard `==` specifiers fixes PEP440 parser compatibility and cleans up the Dependency Dashboard warnings. Towards: b/557105840
1 parent abd0645 commit f40cf77

8 files changed

Lines changed: 22 additions & 22 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest===7.4.3; python_version == '3.7'
2-
pytest===8.3.5; python_version == '3.8'
1+
pytest==7.4.3; python_version == '3.7'
2+
pytest==8.3.5; python_version == '3.8'
33
pytest==9.0.3; python_version >= '3.9'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest===7.4.3; python_version == '3.7'
2-
pytest===8.3.5; python_version == '3.8'
1+
pytest==7.4.3; python_version == '3.7'
2+
pytest==8.3.5; python_version == '3.8'
33
pytest==9.0.3; python_version >= '3.9'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
google-cloud-testutils==1.8.0
2-
pytest===7.4.3; python_version == '3.7'
3-
pytest===8.3.5; python_version == '3.8'
2+
pytest==7.4.3; python_version == '3.7'
3+
pytest==8.3.5; python_version == '3.8'
44
pytest==9.0.3; python_version >= '3.9'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest===7.4.3; python_version == '3.7'
2-
pytest===8.3.5; python_version == '3.8'
1+
pytest==7.4.3; python_version == '3.7'
2+
pytest==8.3.5; python_version == '3.8'
33
pytest==9.0.3; python_version >= '3.9'
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
google-auth==2.52.0
22
google-cloud-bigquery-storage==2.38.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.41.0; python_version >= '3.9'
5-
pyarrow===12.0.1; python_version == '3.7'
6-
pyarrow===17.0.0; python_version == '3.8'
5+
pyarrow==12.0.1; python_version == '3.7'
6+
pyarrow==17.0.0; python_version == '3.8'
77
pyarrow==24.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'
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'
1212
ipython==9.13.0; python_version >= '3.11'
1313
ipywidgets==8.1.8
14-
pandas===1.3.5; python_version == '3.7'
15-
pandas===2.0.3; python_version == '3.8'
14+
pandas==1.3.5; python_version == '3.7'
15+
pandas==2.0.3; python_version == '3.8'
1616
pandas==2.3.3; python_version >= '3.9'
1717
tqdm==4.67.3
18-
db-dtypes===1.4.2; python_version <= '3.8'
18+
db-dtypes==1.4.2; python_version <= '3.8'
1919
db-dtypes==1.6.0; python_version >= '3.9'

packages/google-cloud-bigquery/samples/magics/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ bigquery_magics==0.10.3
22
db-dtypes==1.4.3
33
google.cloud.bigquery==3.45.0
44
google-cloud-bigquery-storage==2.33.1
5-
ipython===8.18.1
5+
ipython==8.18.1
66
pandas==2.3.3
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
apache-beam===2.60.0; python_version == '3.8'
2-
apache-beam===2.69.0; python_version == '3.9'
1+
apache-beam==2.60.0; python_version == '3.8'
2+
apache-beam==2.69.0; python_version == '3.9'
33
apache-beam==2.71.0; python_version >= '3.10'
44
google-cloud-bigtable==2.35.0
55
google-cloud-core==2.5.0

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": [
3-
"config:base",
3+
"config:recommended",
44
"group:all",
55
"schedule:weekly"
66
],

0 commit comments

Comments
 (0)