Skip to content

Commit e133edf

Browse files
authored
Test against Python version 3.12. (#37)
* Test against Python version 3.12. * Specify 3.12 release candidate.
1 parent e05a344 commit e133edf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, windows-latest, macos-latest]
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-rc.3"]
1313
steps:
1414
- uses: actions/checkout@v3
1515
with:

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.9",
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
2324
"Programming Language :: Python :: Implementation :: CPython",
2425
"Programming Language :: Python :: Implementation :: PyPy",
2526
]
@@ -65,7 +66,7 @@ lint = "ruff check ."
6566
typing = "mypy"
6667

6768
[[tool.hatch.envs.test.matrix]]
68-
python = ["37", "38", "39", "310", "311", "pypy38", "pypy39"]
69+
python = ["37", "38", "39", "310", "311", "312", "pypy38", "pypy39"]
6970

7071
[tool.hatch.envs.test.scripts]
7172
test = "pytest {args}"

0 commit comments

Comments
 (0)