From f070afe5fe6725e3ab6c2d5ccaf9b68a27425faa Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sat, 9 Sep 2023 23:48:13 +0300 Subject: [PATCH 1/2] Bump GitHub Actions --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 470c010..92d890e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: contents: read steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: @@ -55,7 +55,7 @@ jobs: ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: From adb2f8753b206f74e9f3acb01ecf0626de3634d8 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sat, 9 Sep 2023 23:49:57 +0300 Subject: [PATCH 2/2] Add support for Python 3.12 --- .github/workflows/test.yml | 2 ++ setup.py | 1 + tox.ini | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 92d890e..206d3af 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,6 +52,7 @@ jobs: "3.9", "3.10", "3.11", + "3.12", ] steps: @@ -60,6 +61,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} + allow-prereleases: true - name: Install dependencies run: | diff --git a/setup.py b/setup.py index 5bd5f0f..259d058 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Software Development', ] diff --git a/tox.ini b/tox.ini index b0766b5..d62caa1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 2.9.1 skip_missing_interpreters = true -envlist = py35, py36, py37, py38, py39, py310, py311 +envlist = py37, py38, py39, py310, py311, py312 [testenv] description = run the test driver with {basepython}