Skip to content

Commit 55ce972

Browse files
committed
Add Python 3.12 to builders
1 parent 1c33b33 commit 55ce972

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
23+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
2424
steps:
2525
- name: Checkout repository
2626
uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ def read_file(fname):
5151
'Programming Language :: Python :: 3.8',
5252
'Programming Language :: Python :: 3.9',
5353
'Programming Language :: Python :: 3.10',
54-
'Programming Language :: Python :: 3.11'
54+
'Programming Language :: Python :: 3.11',
55+
'Programming Language :: Python :: 3.12'
5556
],
5657
entry_points={
5758
'pytest11': [

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ envlist =
77
py39
88
py310
99
py311
10+
py312
1011

1112
[testenv]
1213
deps =
@@ -30,3 +31,4 @@ python =
3031
3.9: py39
3132
3.10: py310
3233
3.11: py311
34+
3.12: py312

0 commit comments

Comments
 (0)