From bbfc684c85910eb4f3a7d1dd93b1a5eb1c52923e Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Thu, 2 Dec 2021 18:04:22 +0100 Subject: [PATCH] Officially support Python 3.11 --- .github/workflows/build.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa056a20..07b09418 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: # cibuildwheel builds linux wheels inside a manylinux container # it also takes care of procuring the correct python version for us os: [ubuntu-latest, windows-latest, macos-latest] - python-version: [36, 37, 38, 39, 310] + python-version: [36, 37, 38, 39, 310, 311] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index bd245a4d..e1c709b8 100644 --- a/setup.py +++ b/setup.py @@ -121,6 +121,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Software Development', ], python_requires=">=3.6",