Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
fix(ndb): Drop support for Python 3.9#16950
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
d158d2aadbc09947a2fa25f8c0af131d5fcFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -44,7 +44,7 @@ def main(): | ||
| "google-cloud-datastore >= 2.16.0, != 2.20.2, < 3.0.0", | ||
| "protobuf >= 4.25.8, < 8.0.0", | ||
| "pymemcache >= 2.1.0, < 5.0.0", | ||
| "pytz >= 2018.3", | ||
| "pytz >= 2022.1", | ||
| "redis >= 3.0.0, < 8.0.0", | ||
| ] | ||
| @@ -68,7 +68,6 @@ def main(): | ||
| "License :: OSI Approved :: Apache Software License", | ||
| "Programming Language :: Python", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
chalmerlowe marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| @@ -81,7 +80,7 @@ def main(): | ||
| packages=packages, | ||
| install_requires=dependencies, | ||
| extras_require={}, | ||
| python_requires=">=3.9", | ||
| python_requires=">=3.10", | ||
| include_package_data=False, | ||
| zip_safe=False, | ||
| ) | ||
| 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", | ||
| # Then this file should have foo==1.14.0 | ||
| google-cloud-datastore==2.16.0 | ||
| google-api-core==2.11.0 | ||
| protobuf==4.25.8 | ||
| pymemcache==2.1.0 | ||
| redis==3.0.0 | ||
| pytz==2022.1 | ||
| # TODO(https://github.com/googleapis/python-ndb/issues/913) remove this dependency once six is no longer used in the codebase | ||
| six==1.12.0 |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.