From 69dabbe24a03c94864203e78d42f6c6c3dfcc6be Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 12 Jan 2023 12:18:03 -0500 Subject: [PATCH] fix: add support for python 3.11 --- noxfile.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 18a7232e4..089827860 100644 --- a/noxfile.py +++ b/noxfile.py @@ -85,7 +85,7 @@ def mypy(session): session.run("mypy", "google/", "tests/", "tests_async/") -@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"]) +@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]) def unit(session): constraints_path = str( CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" diff --git a/setup.py b/setup.py index c89b05d1d..50ac473ba 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License",