Skip to content

Commit 4ca26ff

Browse files
committed
chore: support Python 3.13
1 parent 012b7a3 commit 4ca26ff

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
matrix:
58-
python-version: ['3.10', '3.11', '3.12']
58+
python-version: ['3.10', '3.11', '3.12', '3.13']
5959

6060
steps:
6161
- name: Build wheelhouse and perform smoke test
@@ -76,7 +76,7 @@ jobs:
7676
fail-fast: false
7777
matrix:
7878
os: [windows-latest, macos-latest]
79-
python-version: ['3.10', '3.11', '3.12']
79+
python-version: ['3.10', '3.11', '3.12', '3.13']
8080

8181
steps:
8282
- name: Build wheelhouse and perform smoke test

_package/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
2728
]
2829

2930
dependencies = [

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ basepython =
1212
py310: python3.10
1313
py311: python3.11
1414
py312: python3.12
15+
py313: python3.13
1516
py: python3
1617
{style,reformat,doc}: python3
1718
setenv =

0 commit comments

Comments
 (0)