We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2684be7 commit 0844b4eCopy full SHA for 0844b4e
.github/workflows/validation.yml
@@ -5,7 +5,7 @@ jobs:
5
runs-on: ubuntu-20.04
6
strategy:
7
matrix:
8
- python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
9
steps:
10
- uses: actions/checkout@v3
11
- uses: actions/setup-python@v4
pyproject.toml
@@ -24,6 +24,7 @@ classifiers = [
24
"Programming Language :: Python :: 3.9",
25
"Programming Language :: Python :: 3.10",
26
"Programming Language :: Python :: 3.11",
27
+ "Programming Language :: Python :: 3.12",
28
"Programming Language :: Python :: Implementation :: CPython",
29
"Topic :: Software Development :: Testing",
30
]
tox.ini
@@ -8,6 +8,7 @@ envlist =
py39-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.78, 0.x, 1.0, 1.x}
py310-pytest{6.2, 6.x, 7.0, 7.x}-mypy{0.78, 0.x, 1.0, 1.x}
py311-pytest{6.2, 6.x, 7.0, 7.x}-mypy{0.90, 0.x, 1.0, 1.x}
+ py312-pytest{6.2, 6.x, 7.0, 7.x}-mypy{0.90, 0.x, 1.0, 1.x}
12
publish
13
static
14
@@ -18,13 +19,15 @@ python =
18
19
3.9: py39-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.78, 0.x, 1.0, 1.x}
20
3.10: py310-pytest{6.2, 6.x, 7.0, 7.x}-mypy{0.78, 0.x, 1.0, 1.x}
21
3.11: py311-pytest{6.2, 6.x, 7.0, 7.x}-mypy{0.90, 0.x, 1.0, 1.x}
22
+ 3.12: py312-pytest{6.2, 6.x, 7.0, 7.x}-mypy{0.90, 0.x, 1.0, 1.x}
23
[testenv]
deps =
pytest4.6: pytest ~= 4.6.0
pytest5.0: pytest ~= 5.0.0
pytest5.x: pytest ~= 5.0
pytest6.0: pytest ~= 6.0.0
+ pytest6.2: pytest ~= 6.2.0
31
pytest6.x: pytest ~= 6.0
32
pytest7.0: pytest ~= 7.0.0
33
pytest7.x: pytest ~= 7.0
0 commit comments