From 8af7929c1eb77133e5d98d3b6f6fa686ced5ce1f Mon Sep 17 00:00:00 2001 From: Ben Cail Date: Tue, 26 Mar 2024 14:16:04 -0400 Subject: [PATCH] Support Python 3.12 --- .github/workflows/integration.yml | 2 +- setup.py | 6 +++--- tox.ini | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index b596fc6..af168a8 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -32,7 +32,7 @@ jobs: max-parallel: 8 matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.8, 3.9, '3.10', 3.11] + python-version: [3.8, 3.9, '3.10', 3.11, 3.12] steps: - name: Set up Python ${{ matrix.python-version }} x64 diff --git a/setup.py b/setup.py index 841dfb9..9db0b40 100644 --- a/setup.py +++ b/setup.py @@ -47,11 +47,11 @@ def run_tests(self): 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: CPython', ), ) diff --git a/tox.ini b/tox.ini index e7217a7..fd367cb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=bluecheck,doc8,docs,isortcheck,flake8,mypy,pylint,rstcheck,py38,py39,py310,py311 +envlist=bluecheck,doc8,docs,isortcheck,flake8,mypy,pylint,rstcheck,py38,py39,py310,py311,py312 skip_missing_interpreters=True [testenv]