From 45fac50617f88da9e2b0a10b5427def15e77935f Mon Sep 17 00:00:00 2001 From: avikstroem Date: Thu, 23 Nov 2023 13:40:21 +0100 Subject: [PATCH] Support Python 3.12 --- .github/workflows/ci.yaml | 2 +- pyproject.toml | 1 + tox.ini | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d06dd6b..97883c6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: build: strategy: matrix: - python_version: ["3.9", "3.10", "3.11"] + python_version: ["3.9", "3.10", "3.11", "3.12"] runs-on: "ubuntu-latest" steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index b6d96c7..df5802d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing :: Unit", "Framework :: Pytest", diff --git a/tox.ini b/tox.ini index 0bb1e00..d834fcb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39,py310,py311 +envlist = py39,py310,py311,py312 isolated_build = True minversion = 4.0.0 @@ -9,6 +9,7 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] deps =