From d5ca29ec3db4157ed779d4745a294deccf427ebc Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Mon, 8 Nov 2021 10:09:45 -0600 Subject: [PATCH 1/3] feat: allow Python 3.10 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, ) From aae5d8edc202a0bfae59ba2b486d985c42eec9e9 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Mon, 8 Nov 2021 10:17:27 -0600 Subject: [PATCH 2/3] add missing test configs --- noxfile.py | 4 ++-- testing/constraints-3.10.txt | 0 testing/constraints-3.11.txt | 0 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 testing/constraints-3.10.txt create mode 100644 testing/constraints-3.11.txt diff --git a/noxfile.py b/noxfile.py index ed88b094..1c7770cd 100644 --- a/noxfile.py +++ b/noxfile.py @@ -28,8 +28,8 @@ BLACK_PATHS = ["docs", "pandas_gbq", "tests", "noxfile.py", "setup.py"] DEFAULT_PYTHON_VERSION = "3.8" -SYSTEM_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9"] -UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9"] +SYSTEM_TEST_PYTHON_VERSIONS = ["3.7", "3.10"] +UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"] CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute() 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 From a4e22c71c7f26217aa77b5b34f02652c7abfb173 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Mon, 8 Nov 2021 16:19:22 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 1c7770cd..ed88b094 100644 --- a/noxfile.py +++ b/noxfile.py @@ -28,8 +28,8 @@ BLACK_PATHS = ["docs", "pandas_gbq", "tests", "noxfile.py", "setup.py"] DEFAULT_PYTHON_VERSION = "3.8" -SYSTEM_TEST_PYTHON_VERSIONS = ["3.7", "3.10"] -UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"] +SYSTEM_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9"] +UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9"] CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()