Skip to content

Commit aa1f557

Browse files
authored
🧪 Test against 3.12 (#109)
1 parent 33c27e0 commit aa1f557

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

‎.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: 3.8
25-
- uses: pre-commit/[email protected].0
25+
- uses: pre-commit/[email protected].1
2626

2727
tests:
2828

2929
runs-on: ubuntu-latest
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
python-version: ['pypy-3.8', '3.8', '3.9', '3.10', '3.11']
33+
python-version: ['pypy-3.8', '3.8', '3.9', '3.10', '3.11', '3.12']
3434

3535
steps:
3636
- uses: actions/checkout@v4

‎pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.9",
1919
"Programming Language :: Python :: 3.10",
2020
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
2122
"Programming Language :: Python :: Implementation :: CPython",
2223
"Programming Language :: Python :: Implementation :: PyPy",
2324
"Topic :: Software Development :: Libraries :: Python Modules",

‎tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ envlist = py38
99
[testenv]
1010
usedevelop = true
1111

12-
[testenv:py{37,38,39,310,311}]
12+
[testenv:py{38,39,310,311,312}]
1313
extras = testing
1414
commands = pytest {posargs}
1515

0 commit comments

Comments
 (0)