From 540d58c9430c63eda519f696f806f8195519185f Mon Sep 17 00:00:00 2001 From: Jasha <8935917+Jasha10@users.noreply.github.com> Date: Tue, 15 Nov 2022 18:08:13 +0000 Subject: [PATCH] python3.11: add news fragment & update metadata --- .circleci/config.yml | 2 +- news/feature.1023 | 1 + noxfile.py | 2 +- setup.py | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 news/feature.1023 diff --git a/.circleci/config.yml b/.circleci/config.yml index 6375e66a5..1690bfccc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,4 +39,4 @@ workflows: - test_linux: matrix: parameters: - py_version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + py_version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] diff --git a/news/feature.1023 b/news/feature.1023 new file mode 100644 index 000000000..5039bdd55 --- /dev/null +++ b/news/feature.1023 @@ -0,0 +1 @@ +Support python3.11 diff --git a/noxfile.py b/noxfile.py index 22a53ca47..0f10f5c26 100644 --- a/noxfile.py +++ b/noxfile.py @@ -3,7 +3,7 @@ import nox -DEFAULT_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10"] +DEFAULT_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] PYTHON_VERSIONS = os.environ.get( "NOX_PYTHON_VERSIONS", ",".join(DEFAULT_PYTHON_VERSIONS) diff --git a/setup.py b/setup.py index da335221b..6088f1df8 100644 --- a/setup.py +++ b/setup.py @@ -64,6 +64,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", ],