From 47e2b9e98c032ec6b96950f7257e3c02857c087d Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Tue, 2 May 2023 00:22:41 +0200 Subject: [PATCH] Start supporting Python 3.11 --- .github/workflows/test.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12e6c3e..2eae355 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: run_test_suite: strategy: matrix: - python-version: [3.7, '3.10'] # no current need for in-between versions + python-version: [3.7, 3.11] # no current need for in-between versions name: Run the Test Suite runs-on: ubuntu-20.04 steps: diff --git a/setup.py b/setup.py index f01f380..2df6b22 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3 :: Only", ], python_requires='>=3.7',