Skip to content

Commit 1714dbf

Browse files
committed
build(python): add support for Python 3.13 (#146)
1 parent fef3295 commit 1714dbf

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
runs-on: ubuntu-24.04
137137
strategy:
138138
matrix:
139-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
139+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
140140

141141
steps:
142142
- uses: actions/checkout@v4

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
"Programming Language :: Python :: 3.10",
8787
"Programming Language :: Python :: 3.11",
8888
"Programming Language :: Python :: 3.12",
89+
"Programming Language :: Python :: 3.13",
8990
"Programming Language :: Python :: Implementation :: CPython",
9091
"Programming Language :: Python",
9192
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ envlist =
1212
py310
1313
py311
1414
py312
15+
py313
1516

1617
[testenv]
1718
deps =

0 commit comments

Comments
 (0)