From e1c44888d7dd35c2c153d872a14a046d46212adf Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Mon, 12 Aug 2024 20:55:43 -0400 Subject: [PATCH] Test support for Python 3.12. --- .github/workflows/test.yml | 2 +- setup.py | 1 + tox.ini | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62963db..6f76f7f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false max-parallel: 5 matrix: - 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.py b/setup.py index cd86fbd..9e4eee1 100755 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Software Development :: Libraries :: Python Modules' ], ) diff --git a/tox.ini b/tox.ini index 4867e62..e503674 100644 --- a/tox.ini +++ b/tox.ini @@ -9,6 +9,7 @@ envlist = py{38,39}-{4.2}, py310-{4.2,5.0,5.1,main}, py311-{4.2,5.0,5.1,main}, + py312-{4.2,5.0,5.1,main}, [gh-actions] python = @@ -16,6 +17,7 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] usedevelop = true