Skip to content

Commit a720df9

Browse files
authored
Support Python 3.13 (#3765)
1 parent 41061fd commit a720df9

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/ci-branch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
11+
python: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
1212

1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/ci-pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
11+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Tox test suites available:
6060
* **py310**: Unit tests (Python 3.10)
6161
* **py311**: Unit tests (Python 3.11)
6262
* **py312**: Unit tests (Python 3.12)
63+
* **py313**: Unit tests (Python 3.13)
6364
* **style**: Python syntax check
6465

6566
## Contributing via Pull Requests

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers = [
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3637
]
3738
dynamic = ["version", "readme"]
3839
dependencies = [

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,39,310,311,312},style
2+
envlist = py{38,39,310,311,312,313},style
33
isolated_build = true
44

55
[testenv]

0 commit comments

Comments
 (0)