From 474f5a874e982f2dde91689a57c17d6f8181a3b0 Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Sat, 28 Oct 2023 16:29:37 +0300 Subject: [PATCH] Test with Python 3.12 --- .github/workflows/main.yml | 3 ++- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c9a68be..19a0581 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,6 +10,7 @@ jobs: - '3.9' - '3.10' - '3.11' + - '3.12' - pypy-3.9 runs-on: ubuntu-latest steps: @@ -28,7 +29,7 @@ jobs: - name: Run the doctest run: python -m doctest README.rst -v - name: Upload reports to Codecov - if: ${{ matrix.python == '3.11' }} + if: ${{ matrix.python == '3.12' }} run: codecov static-analysis: runs-on: ubuntu-latest diff --git a/pyproject.toml b/pyproject.toml index e60a429..90e85cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", "Topic :: Text Processing :: Markup", "Topic :: Text Processing :: General",