Skip to content

Commit 4ce8235

Browse files
committed
Add Python 3.12 to test matrix and add classifiers
1 parent 430dcdd commit 4ce8235

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest, macos-latest] # All OSes pass except Windows because tests need Unix-only fcntl, grp, pwd, etc.
13-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8" ]
13+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8" ]
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Using Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
'Programming Language :: Python :: 3.9',
2929
'Programming Language :: Python :: 3.10',
3030
'Programming Language :: Python :: 3.11',
31+
'Programming Language :: Python :: 3.12',
3132
'Programming Language :: Python :: 3 :: Only',
3233
'Programming Language :: Python :: Implementation :: CPython',
3334
'Programming Language :: Python :: Implementation :: PyPy',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,py3}, lint, docs-lint, pycodestyle
2+
envlist = py{37,38,39,310,311,312,py3}, lint, docs-lint, pycodestyle
33
skipsdist = false
44
; Can't set skipsdist and use_develop in tox v4 to true due to https://github.com/tox-dev/tox/issues/2730
55

0 commit comments

Comments
 (0)