Skip to content

Commit 85b088c

Browse files
authored
ci, build: Python 3.13 support (#41)
1 parent dd28ec2 commit 85b088c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/codequality.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] # pre-commit does not support Python < 3.8
12+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] # pre-commit does not support Python < 3.8
1313

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

.github/workflows/unittest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
23+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
2424

2525
steps:
2626
- uses: actions/checkout@v4

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Framework :: Jupyter",
2728
"Topic :: Software Development :: User Interfaces",
2829
"Environment :: Web Environment",

0 commit comments

Comments
 (0)