We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4cd6b5d + 05fc652 commit 079de07Copy full SHA for 079de07
.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", "3.12"]
+ python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
9
steps:
10
- uses: actions/checkout@v3
11
- uses: actions/setup-python@v4
pyproject.toml
@@ -25,6 +25,7 @@ classifiers = [
25
"Programming Language :: Python :: 3.10",
26
"Programming Language :: Python :: 3.11",
27
"Programming Language :: Python :: 3.12",
28
+ "Programming Language :: Python :: 3.13",
29
"Programming Language :: Python :: Implementation :: CPython",
30
"Topic :: Software Development :: Testing",
31
]
tox.ini
@@ -9,6 +9,7 @@ envlist =
py310-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}
py311-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}
py312-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}
12
+ py313-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}
13
static
14
publish
15
@@ -20,6 +21,7 @@ python =
20
21
3.10: py310-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}
22
3.11: py311-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}
23
3.12: py312-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}, static, publish
24
+ 3.13: py313-pytest{7.0, 7.x, 8.0, 8.x}-mypy{1.0, 1.x}-xdist{1.x, 2.0, 2.x, 3.0, 3.x}
[testenv]
constrain_package_deps = true
0 commit comments