-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Remove python 3.7 due to end of life (EOL) (#737)
* fix: removing Python 3.7 due to EOL * remove 3.7 from noxfile.py * remove 3.7 from owlbot.py * removed 3.7 from sample req.txt * removed constraints-3.7 * removed references to 3.7 in setup.py * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * adds lower end constraint for db-dtypes with Python 3.8 * removes two more references to 3.7 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * updates constraint * update constraints for 3.8 * remove protobuf as a direct dependency - test * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
366cb55
commit d0810e8
Showing
9 changed files
with
30 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
google-cloud-bigquery-storage==2.24.0 | ||
google-cloud-bigquery==3.14.1 | ||
pandas-gbq==0.20.0 | ||
pandas===1.3.5; python_version == '3.7' | ||
pandas===2.0.3; python_version == '3.8' | ||
pandas==2.1.4; python_version >= '3.9' | ||
pyarrow==12.0.1; python_version == '3.7' | ||
pyarrow==14.0.1; python_version >= '3.8' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
numpy==1.17.5 | ||
# This constraints file is used to check that lower bounds | ||
# are correct in setup.py | ||
# List *all* library dependencies and extras in this file. | ||
# Pin the version to the lower bound. | ||
# | ||
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev", | ||
# Then this file should have foo==1.14.0 | ||
# protobuf==3.19.5 | ||
db-dtypes==1.0.4 | ||
google-api-core==2.10.2 | ||
google-auth==2.13.0 | ||
google-auth-oauthlib==0.7.0 | ||
google-cloud-bigquery==3.3.5 | ||
google-cloud-bigquery-storage==2.16.2 | ||
numpy==1.16.6 | ||
pandas==1.1.4 | ||
pyarrow==3.0.0 | ||
pydata-google-auth==1.5.0 | ||
tqdm==4.23.0 | ||
packaging==20.0.0 |