From 3e574a57cbed071df713d05082896d073a00c738 Mon Sep 17 00:00:00 2001 From: Robert Schwebel Date: Tue, 28 May 2024 19:47:15 +0200 Subject: [PATCH] Add Python 3.11 and 3.12 Test Coverage (#348) * workflows: add test coverage for Python 3.12 Python 3.12 has been released for a while, add test coverage support in our workflows. * tox: add environment for Python 3.11 Create a Python 3.11 test environment. * tox: add environment for Python 3.12 Create a Python 3.12 test environment. --- .github/workflows/main.yml | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 69b2739..3f6a11d 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 diff --git a/tox.ini b/tox.ini index 4fea8e0..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 +envlist = py27,py37,py38,py39,py310,py311,py312 [testenv] install_command = pip install {opts} {packages}