From 1509c3e9997aba1559dc2c79d283f5d9971864bc Mon Sep 17 00:00:00 2001 From: Robert Schwebel Date: Tue, 19 Dec 2023 22:42:21 +0100 Subject: [PATCH 1/3] workflows: add test coverage for Python 3.12 Python 3.12 has been released for a while, add test coverage support in our workflows. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cbe60e4..c8d4771 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,7 @@ jobs: - '3.9' - '3.10' - '3.11' + - '3.12' steps: - uses: actions/checkout@v3 From c43c81beeaa25268491f456b7a5127c274813cf1 Mon Sep 17 00:00:00 2001 From: Robert Schwebel Date: Tue, 19 Dec 2023 22:58:39 +0100 Subject: [PATCH 2/3] tox: add environment for Python 3.11 Create a Python 3.11 test environment. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4fea8e0..c086671 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] # These should match the GitHub Actions env list -envlist = py27,py37,py38,py39,py310 +envlist = py27,py37,py38,py39,py310,py311 [testenv] install_command = pip install {opts} {packages} From 859d68ae3eaf6df8547b1cd26316353cd4f75ac2 Mon Sep 17 00:00:00 2001 From: Robert Schwebel Date: Tue, 19 Dec 2023 22:59:24 +0100 Subject: [PATCH 3/3] tox: add environment for Python 3.12 Create a Python 3.12 test environment. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c086671..de3ecac 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] # These should match the GitHub Actions env list -envlist = py27,py37,py38,py39,py310,py311 +envlist = py27,py37,py38,py39,py310,py311,py312 [testenv] install_command = pip install {opts} {packages}