Skip to content

Commit

Permalink
fix: use triple equal for pinned requirements (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
Linchin committed Apr 11, 2024
1 parent a46f427 commit d746c3c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion samples/quickstart/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pytest==7.4.3; python_version == '3.7'
pytest===7.4.3; python_version == '3.7'
pytest==8.1.1; python_version >= '3.8'
2 changes: 1 addition & 1 deletion samples/snippets/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
google-cloud-testutils==1.4.0
pytest==7.4.3; python_version == '3.7'
pytest===7.4.3; python_version == '3.7'
pytest==8.1.1; python_version >= '3.8'
2 changes: 1 addition & 1 deletion samples/to_dataframe/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pytest==7.4.3; python_version == '3.7'
pytest===7.4.3; python_version == '3.7'
pytest==8.1.1; python_version >= '3.8'
4 changes: 2 additions & 2 deletions samples/to_dataframe/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
google-auth==2.29.0
google-cloud-bigquery-storage==2.24.0
google-cloud-bigquery==3.20.1
pyarrow==12.0.1; python_version == '3.7'
pyarrow===12.0.1; python_version == '3.7'
pyarrow==15.0.2; python_version >= '3.8'
ipython===7.31.1; python_version == '3.7'
ipython===8.10.0; python_version == '3.8'
ipython==8.18.1; python_version == '3.9'
ipython===8.18.1; python_version == '3.9'
ipython==8.23.0; python_version >= '3.10'
ipywidgets==8.1.2
pandas===1.3.5; python_version == '3.7'
Expand Down

0 comments on commit d746c3c

Please sign in to comment.