Skip to content

Commit bfbef6b

Browse files
committed
test on python 3.13
Signed-off-by: Zhiyuan Chen <this@zyc.ai>
1 parent f1ab601 commit bfbef6b

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/push.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: actions/checkout@v3
2020
- uses: actions/setup-python@v4

.pre-commit-config.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,41 +2,41 @@ default_language_version:
22
python: python3
33
repos:
44
- repo: https://github.com/PSF/black
5-
rev: 24.4.2
5+
rev: 25.1.0
66
hooks:
77
- id: black
88
args: [--safe, --quiet]
99
- repo: https://github.com/PyCQA/isort
10-
rev: 5.13.2
10+
rev: 6.0.1
1111
hooks:
1212
- id: isort
1313
name: isort
1414
- repo: https://github.com/PyCQA/flake8
15-
rev: 7.1.0
15+
rev: 7.1.2
1616
hooks:
1717
- id: flake8
1818
additional_dependencies:
1919
- flake8-bugbear
2020
- flake8-comprehensions
2121
- flake8-simplify
2222
- repo: https://github.com/asottile/pyupgrade
23-
rev: v3.16.0
23+
rev: v3.19.1
2424
hooks:
2525
- id: pyupgrade
2626
args: [--keep-runtime-typing]
2727
- repo: https://github.com/tox-dev/pyproject-fmt
28-
rev: 2.1.4
28+
rev: v2.5.1
2929
hooks:
3030
- id: pyproject-fmt
3131
- repo: https://github.com/pre-commit/mirrors-mypy
32-
rev: v1.11.0
32+
rev: v1.15.0
3333
hooks:
3434
- id: mypy
3535
files: danling
3636
additional_dependencies:
3737
- types-PyYaml
3838
- repo: https://github.com/codespell-project/codespell
39-
rev: v2.3.0
39+
rev: v2.4.1
4040
hooks:
4141
- id: codespell
4242
args: [--ignore-words=.codespell-whitelist.txt]
@@ -46,7 +46,7 @@ repos:
4646
- id: prettier
4747
files: danling
4848
- repo: https://github.com/pre-commit/pre-commit-hooks
49-
rev: v4.6.0
49+
rev: v5.0.0
5050
hooks:
5151
- id: check-added-large-files
5252
- id: check-ast

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers = [
3434
"Programming Language :: Python :: 3.10",
3535
"Programming Language :: Python :: 3.11",
3636
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3738
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3839
]
3940
dynamic = [

0 commit comments

Comments
 (0)