From 469cb251cfdffd2a1011abb3b6a64403e3894979 Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Fri, 24 Feb 2023 17:49:31 -0500 Subject: [PATCH] Add official support for Python 3.11 Add pypi classifier for py3.11 Update CI to test py3.11 --- .github/workflows/ci.yaml | 2 ++ pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 575128e..7bc17fc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,6 +20,8 @@ jobs: toxenv: py39 - version: "3.10" toxenv: py310 + - version: "3.11" + toxenv: py311 fail-fast: true steps: - name: Checkout diff --git a/pyproject.toml b/pyproject.toml index 6b1569f..1821b22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ classifiers = [ "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", ] diff --git a/tox.ini b/tox.ini index edc1bd1..b232c0f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, py39, py310, static, static-tests, security +envlist = py37, py38, py39, py310, py311, static, static-tests, security isolated_build = true skip_missing_interpreters = true