Skip to content

Commit a7f8783

Browse files
Add python 3.13 support
1 parent 7345b96 commit a7f8783

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build-release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
include:
1515
- {name: '3.11', python: '3.11', tox: py311}
1616
- {name: '3.12', python: '3.12', tox: py312}
17+
- {name: '3.13', python: '3.13', tox: py313}
1718
steps:
1819
- uses: actions/checkout@v4
1920
- uses: actions/setup-python@v5
@@ -32,7 +33,7 @@ jobs:
3233
- uses: actions/checkout@v4
3334
- uses: actions/setup-python@v5
3435
with:
35-
python-version: "3.12"
36+
python-version: "3.13"
3637
- name: Install pypa/build
3738
run: python -m pip install build
3839
- name: Build a binary wheel and a source tarball
@@ -56,7 +57,7 @@ jobs:
5657
- uses: actions/checkout@v4
5758
- uses: actions/setup-python@v5
5859
with:
59-
python-version: 3.12
60+
python-version: 3.13
6061
- run: python -m pip install tox
6162
- run: python -m tox -elint
6263
publish-to-pypi:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3 :: Only",
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
2324
]
2425
requires-python = ">=3.11"
2526
dependencies = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py311,py312
2+
envlist = lint,py311,py312,py313
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)