From 8aa4a7b262a85830215e3d08ebb649125ca3f836 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 25 Jun 2022 15:34:28 -0700 Subject: [PATCH 1/2] Add testing and document support for Python 3.11 Released Oct. 24, 2022. https://www.python.org/downloads/release/python-3110/ --- .github/workflows/codespell-private.yml | 1 + pyproject.toml | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codespell-private.yml b/.github/workflows/codespell-private.yml index 44c71aca1d..88dd8aa2d1 100644 --- a/.github/workflows/codespell-private.yml +++ b/.github/workflows/codespell-private.yml @@ -21,6 +21,7 @@ jobs: - '3.8' - '3.9' - '3.10' + - '3.11' name: Python ${{ matrix.python-version }} test steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 997e91dc2f..58250f3e88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,15 @@ classifiers = [ "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", - "Operating System :: MacOS" + "Operating System :: MacOS", + "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", ] dependencies = [] dynamic = ["version"] From 8a96e41f9e92fbd643f106c2e80bcbd59883aec2 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 6 Nov 2022 13:10:49 -0800 Subject: [PATCH 2/2] Remove Python version classifiers --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 58250f3e88..71d90edf73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,11 +21,6 @@ classifiers = [ "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", ] dependencies = [] dynamic = ["version"]