From 2e59b5dc81fd8ad7bde582ada10befa9123f8357 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Thu, 27 Oct 2022 10:10:03 +0300 Subject: [PATCH] Support Python 3.11 --- .github/workflows/build.yml | 2 +- CHANGES.rst | 3 +++ appveyor.yml | 1 + setup.py | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30af88b..99d3ed6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: - "3.8" - "3.9" - "3.10" - - "3.11-dev" + - "3.11" - "pypy-3.7" vcs: - bzr diff --git a/CHANGES.rst b/CHANGES.rst index 62431d8..f76819d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,10 @@ Changelog 0.49 (unreleased) ----------------- +- Add Python 3.11 support. + - Drop Python 3.6 support. + - Exclude more common dev/test files diff --git a/appveyor.yml b/appveyor.yml index 454a1c0..73a0f48 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,6 +8,7 @@ environment: - PYTHON: "C:\\Python38" - PYTHON: "C:\\Python39" - PYTHON: "C:\\Python310" + - PYTHON: "C:\\Python311" init: - "echo %PYTHON%" diff --git a/setup.py b/setup.py index f1fab1a..dbc1db8 100755 --- a/setup.py +++ b/setup.py @@ -44,11 +44,11 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ],