From faba940bc19d5c260b9dce3f973a9b729a179d20 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Mon, 8 Nov 2021 12:14:16 -0600 Subject: [PATCH] feat: allow Python 3.10 (#417) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: allow Python 3.10 * add missing test configs * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot --- setup.py | 3 ++- testing/constraints-3.10.txt | 0 testing/constraints-3.11.txt | 0 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 testing/constraints-3.10.txt create mode 100644 testing/constraints-3.11.txt diff --git a/setup.py b/setup.py index b1169cef..b66c0499 100644 --- a/setup.py +++ b/setup.py @@ -77,6 +77,7 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Operating System :: OS Independent", "Topic :: Internet", "Topic :: Scientific/Engineering", @@ -85,7 +86,7 @@ packages=packages, install_requires=dependencies, extras_require=extras, - python_requires=">=3.7, <3.10", + python_requires=">=3.7, <3.11", include_package_data=True, zip_safe=False, ) diff --git a/testing/constraints-3.10.txt b/testing/constraints-3.10.txt new file mode 100644 index 00000000..e69de29b diff --git a/testing/constraints-3.11.txt b/testing/constraints-3.11.txt new file mode 100644 index 00000000..e69de29b