Skip to content

Commit c4e9ba3

Browse files
committed
Adds support to python 3.13
1 parent 252fbd0 commit c4e9ba3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
39+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
4040
os: [ubuntu-latest, windows-latest]
4141
tox_env: ["py"]
4242
include:
@@ -63,6 +63,7 @@ jobs:
6363
uses: actions/setup-python@v5
6464
with:
6565
python-version: ${{ matrix.python }}
66+
allow-prereleases: true
6667

6768
- name: Install tox
6869
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3536
"Topic :: Software Development :: Testing",
3637
]
3738

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.5.3
3-
envlist = py{38,39,310,311,312}, norewrite, pytest6
3+
envlist = py{38,39,310,311,312,313}, norewrite, pytest6
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)