From bc195b15ed7b382d4beeb62a939597999749e5a0 Mon Sep 17 00:00:00 2001 From: tschilling Date: Sat, 3 Dec 2022 10:03:50 -0600 Subject: [PATCH] Formalize support for Python 3.11. We were already largely testing against 3.11, but this adds the classifier and uses py3.11 for the coverage CI job. --- .github/workflows/test.yml | 2 +- docs/changes.rst | 1 + pyproject.toml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a15d59279..d4ed7123c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -196,7 +196,7 @@ jobs: - uses: actions/setup-python@v4 with: # Use latest, so it understands all syntax. - python-version: "3.10" + python-version: "3.11" - run: python -m pip install --upgrade coverage[toml] diff --git a/docs/changes.rst b/docs/changes.rst index 1bcd7f190..ea413fe7a 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -15,6 +15,7 @@ Pending * Update package metadata to use Hatchling. * Fix highlighting on history panel so odd rows are highlighted when selected. +* Formalize support for Python 3.11. 3.7.0 (2022-09-25) ------------------ diff --git a/pyproject.toml b/pyproject.toml index 8a1257cb8..f6508e1e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Libraries :: Python Modules", ] [project.urls]