Skip to content

Commit ce737ff

Browse files
committed
Add Python 3.12 to builders
1 parent 1a2729f commit ce737ff

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
37+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
3838
steps:
3939
- name: Checkout repository
4040
uses: actions/checkout@v4

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def read_file(fname):
4545
'Programming Language :: Python :: 3.9',
4646
'Programming Language :: Python :: 3.10',
4747
'Programming Language :: Python :: 3.11',
48+
'Programming Language :: Python :: 3.12',
4849
],
4950
install_requires=read_file('requirements.txt').splitlines(),
5051
)

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)