Skip to content

Commit 4a514c7

Browse files
authored
feat: support python 3.13 (#451)
Adds support for the newly released Python 3.13.
1 parent da0dc98 commit 4a514c7

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1515

1616
name: Python ${{ matrix.python-version }}
1717
steps:

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test:
2626

2727
parallel:
2828
matrix:
29-
- python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
29+
- python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3030

3131
image: python:${python_version}-alpine
3232
before_script:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
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
python_requires=">=3.8",
3839
install_requires=[

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ python =
1515
3.10: py310
1616
3.11: py311
1717
3.12: py312
18+
3.13: py313

0 commit comments

Comments
 (0)