Skip to content

Commit 9dd6d98

Browse files
authored
Add support for Python 3.12 (#48)
1 parent e0c6670 commit 9dd6d98

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
contents: read
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626

2727
- uses: actions/setup-python@v4
2828
with:
@@ -52,14 +52,16 @@ jobs:
5252
"3.9",
5353
"3.10",
5454
"3.11",
55+
"3.12",
5556
]
5657

5758
steps:
58-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v4
5960

6061
- uses: actions/setup-python@v4
6162
with:
6263
python-version: ${{ matrix.python }}
64+
allow-prereleases: true
6365

6466
- name: Install dependencies
6567
run: |

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
'Programming Language :: Python :: 3.9',
2222
'Programming Language :: Python :: 3.10',
2323
'Programming Language :: Python :: 3.11',
24+
'Programming Language :: Python :: 3.12',
2425
'Topic :: Software Development',
2526
]
2627

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 2.9.1
33
skip_missing_interpreters = true
4-
envlist = py35, py36, py37, py38, py39, py310, py311
4+
envlist = py37, py38, py39, py310, py311, py312
55

66
[testenv]
77
description = run the test driver with {basepython}

0 commit comments

Comments
 (0)