Skip to content

Commit 28d2960

Browse files
committed
add support to py 3.13
1 parent e484dd3 commit 28d2960

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Pre-commit
1212
strategy:
1313
matrix:
14-
python-version: [3.9] # [3.9, 3.10, 3.11, 3.12, 3.13]
14+
python-version: [3.9, 3.10, 3.11, 3.12, 3.13]
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out the repository

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ classifiers = [
1111
"Operating System :: OS Independent",
1212
"Programming Language :: Python",
1313
"Programming Language :: Python :: 3",
14-
"Programming Language :: Python :: 3.9", # TODO
14+
"Programming Language :: Python :: 3.9",
15+
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1519
"Typing :: Typed",
1620
]
1721
readme = "README.md"

0 commit comments

Comments
 (0)