Skip to content

Commit a8b2926

Browse files
authored
Merge pull request #577 from dajiaji/add-support-for-py313
Add support for Python 3.13.
2 parents 33f1fd0 + 6595bf7 commit a8b2926

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
platform: [ubuntu-latest, windows-latest]
19-
python-version: ["3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ envlist =
33
check
44
build
55
build_docs
6-
py{39,310,311,312}
6+
py{39,310,311,312, 313}
77
isolated_build = True
88
skip_missing_interpreters = True
99

@@ -14,6 +14,7 @@ python =
1414
3.10: check, build, build_docs, py310
1515
3.11: py311
1616
3.12: py312
17+
3.13: py313
1718

1819

1920
[testenv:check]

0 commit comments

Comments
 (0)