From 65ecf7821f080da9d160d0891c6df19d0034a9e0 Mon Sep 17 00:00:00 2001 From: Martijn Pieters Date: Tue, 8 Nov 2022 15:21:23 +0000 Subject: [PATCH] Add support for Python 3.11 (#360) --- .github/workflows/ci.yml | 2 +- CHANGES/360.feature | 1 + setup.cfg | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 CHANGES/360.feature diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b21bbb..d5d6025 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: needs: [lint] strategy: matrix: - pyver: ['3.7', '3.8', '3.9', '3.10'] + pyver: ['3.7', '3.8', '3.9', '3.10', '3.11'] os: [ubuntu, macos, windows] fail-fast: false runs-on: ${{ matrix.os }}-latest diff --git a/CHANGES/360.feature b/CHANGES/360.feature new file mode 100644 index 0000000..80d76aa --- /dev/null +++ b/CHANGES/360.feature @@ -0,0 +1 @@ +Added support for Python 3.11. diff --git a/setup.cfg b/setup.cfg index fc2a1a0..ca42fb8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,6 +28,7 @@ classifiers = 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 Operating System :: POSIX