Skip to content

Commit a8b4016

Browse files
authored
Merge pull request #93 from pytest-dev/python-3.13/1/dev
Add Python 3.13 support
2 parents 0665066 + c3352fd commit a8b4016

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# Not all Python versions are available for linux AND x64
1717
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
1818
os: ['ubuntu-latest']
19-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
19+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
2020
extra: ['', '-smtp']
2121
# The forced pytest versions correspond with the lower bounds in tox.ini
2222
pytest-version: ['', '--force-dep pytest==4', '--force-dep pytest==6.2.4']
@@ -30,6 +30,8 @@ jobs:
3030
pytest-version: '--force-dep pytest==4'
3131
- python-version: '3.12'
3232
pytest-version: '--force-dep pytest==4'
33+
- python-version: '3.13'
34+
pytest-version: '--force-dep pytest==4'
3335
fail-fast: false
3436

3537
steps:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ def run(self):
6666
"Programming Language :: Python :: 3.10",
6767
"Programming Language :: Python :: 3.11",
6868
"Programming Language :: Python :: 3.12",
69+
"Programming Language :: Python :: 3.13",
6970
"Topic :: Software Development :: Testing",
7071
],
7172
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39,310,311,312,py3}{,-smtp},lint
2+
envlist = py{36,37,38,39,310,311,312,313,py3}{,-smtp},lint
33
recreate = True
44
isolated_build = True
55

0 commit comments

Comments
 (0)