From bf294125348c55f30ed2be8be90d924d1381a870 Mon Sep 17 00:00:00 2001 From: beastmatser <79206232+beastmatser@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:41:43 +0100 Subject: [PATCH] :white_check_mark: Add support for python 3.12 --- .github/workflows/tests.yml | 2 +- setup.cfg | 1 + tox.ini | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4557321..c052208 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 diff --git a/setup.cfg b/setup.cfg index 9f25f5d..675922a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,6 +14,7 @@ classifiers = Natural Language :: English Operating System :: OS Independent Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.12 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.9 diff --git a/tox.ini b/tox.ini index 33b14e9..d4e622f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.8.0 -envlist = python3.8, python3.9, python3.10, python3.11, flake8, mypy +envlist = python3.8, python3.9, python3.10, python3.11, python3.12, flake8, mypy isolated_build = true [gh-actions] @@ -9,6 +9,7 @@ python = 3.9: python3.9 3.10: python3.10 3.11: python3.11 + 3.12: python3.12 [testenv] setenv =