From a835092ee6934557b5c2aacfb5c66a806b7838b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=A4ufl?= Date: Mon, 13 Nov 2023 13:44:11 +0100 Subject: [PATCH] Run tests against Python 3.12 --- .github/workflows/tests.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ee4b6a3f7..14234dae9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-20.04 # See https://github.com/actions/setup-python/issues/544 strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.7"] steps: - uses: actions/checkout@v3 diff --git a/tox.ini b/tox.ini index 3f7f589cc..a3cb9cc11 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint, type, py36, py37, py38, py39, py310, py311, pypy3 +envlist = lint, type, py36, py37, py38, py39, py310, py311, py312, pypy3 skip_missing_interpreters = true [testenv]