Skip to content

Commit 39432e7

Browse files
Merge pull request #8 from mam-dev/python-312
Support Python 3.12
2 parents a725640 + 45fac50 commit 39432e7

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
python_version: ["3.9", "3.10", "3.11"]
13+
python_version: ["3.9", "3.10", "3.11", "3.12"]
1414
runs-on: "ubuntu-latest"
1515
steps:
1616
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.9",
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
18+
"Programming Language :: Python :: 3.12",
1819
"Topic :: Software Development :: Testing",
1920
"Topic :: Software Development :: Testing :: Unit",
2021
"Framework :: Pytest",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39,py310,py311
2+
envlist = py39,py310,py311,py312
33
isolated_build = True
44
minversion = 4.0.0
55

@@ -9,6 +9,7 @@ python =
99
3.9: py39
1010
3.10: py310
1111
3.11: py311
12+
3.12: py312
1213

1314
[testenv]
1415
deps =

0 commit comments

Comments
 (0)