-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fix(sqlalchemy-bigquery): Drop support for Python 3.8 and 3.9 #16956
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
e2e98e4
feat(sqlalchemy-bigquery): Update setup.py metadata and python_requires
chalmerlowe df19f98
feat(sqlalchemy-bigquery): Update Nox sessions to remove old versions
chalmerlowe 0940a4f
docs(sqlalchemy-bigquery): Update README and CONTRIBUTING documentation
chalmerlowe a26d226
test(sqlalchemy-bigquery): Update testing constraints to 3.10 and dro…
chalmerlowe b1af282
fix(sqlalchemy-bigquery): Add missing constraints for alembic and pya…
chalmerlowe 7ab4bd0
fix(sqlalchemy-bigquery): Bump pyarrow to 6.0.0 for Python 3.10 compa…
chalmerlowe 690b25b
docs(sqlalchemy-bigquery): Update supported Python versions to <= 3.14
chalmerlowe 8da7e4b
feat(sqla): Update Python version warning to include 3.9
chalmerlowe d41682e
docs(sqla): Update README and CONTRIBUTING for Python 3.9 drop
chalmerlowe df95b9b
refactor(sqlalchemy-bigquery): drop extract_runtime_version for sys.v…
chalmerlowe c867a5f
chore(sqlalchemy-bigquery): remove scanner pragma from README.rst
chalmerlowe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # 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", | ||
| sqlalchemy==1.4.16 | ||
| google-auth==2.14.1 | ||
| google-cloud-bigquery==3.20.0 | ||
| google-cloud-bigquery-storage==2.18.0 | ||
| google-api-core==2.11.1 | ||
| grpcio==1.47.0 | ||
| numpy==1.26.4 | ||
| alembic==1.7.7 | ||
|
chalmerlowe marked this conversation as resolved.
|
||
| pyarrow==6.0.0 | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Trove classifiers are missing entries for Python 3.13 and 3.14, which are stated as supported in the documentation and
noxfile.py. According to the general rules, project metadata should be updated to reflect the supported versions when updating the minimum Python version.References