Skip to content

Commit ab8bd85

Browse files
committed
update pre-commit configuration
Signed-off-by: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com>
1 parent e476563 commit ab8bd85

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.pre-commit-config.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ci:
99
autofix_prs: true
1010
autoupdate_branch: ""
1111
autoupdate_commit_msg: "[pre-commit.ci] pre-commit autoupdate"
12-
autoupdate_schedule: quarterly
12+
autoupdate_schedule: 'quarterly'
1313
skip: []
1414
submodules: false
1515

@@ -24,17 +24,17 @@ repos:
2424
- id: check-merge-conflict
2525
- id: check-toml
2626
- id: check-yaml
27-
args: ["--allow-multiple-documents"]
27+
args: [ "--allow-multiple-documents" ]
2828
- id: debug-statements
2929
- id: end-of-file-fixer
3030
- id: no-commit-to-branch
3131
- id: pretty-format-json
32-
args: ["--autofix", "--no-ensure-ascii", "--no-sort-keys"]
32+
args: [ "--autofix", "--no-ensure-ascii", "--no-sort-keys" ]
3333
exclude: ".ipynb|asv.conf.json"
3434
- id: trailing-whitespace
3535

3636
- repo: https://github.com/astral-sh/ruff-pre-commit
37-
rev: "v0.13.3"
37+
rev: "v0.14.13"
3838
hooks:
3939
- id: ruff-check
4040
args: [ "--fix" ]
@@ -43,10 +43,10 @@ repos:
4343
types_or: [python, pyi, jupyter]
4444

4545
- repo: https://github.com/keewis/blackdoc
46-
rev: v0.4.3
46+
rev: v0.4.6
4747
hooks:
4848
- id: blackdoc
49-
additional_dependencies: ["black==25.9.0"]
49+
additional_dependencies: [ 'black==25.9.0' ]
5050

5151
- repo: https://github.com/PyCQA/doc8
5252
rev: v2.0.0
@@ -62,23 +62,23 @@ repos:
6262
]
6363

6464
- repo: https://github.com/pre-commit/mirrors-mypy
65-
rev: "v1.18.2"
65+
rev: "v1.19.1"
6666
hooks:
6767
- id: mypy
6868
exclude: "asv_bench"
6969
additional_dependencies: [
7070
# Type stubs
71-
types-python-dateutil,
72-
types-setuptools,
73-
types-PyYAML,
74-
types-pytz,
75-
typing-extensions,
71+
'types-python-dateutil',
72+
'types-setuptools',
73+
'types-PyYAML',
74+
'types-pytz',
75+
'typing-extensions',
7676
# Dependencies that are typed
77-
numpy,
77+
'numpy',
7878
]
7979

8080
- repo: https://github.com/python-jsonschema/check-jsonschema
81-
rev: 0.34.0
81+
rev: 0.36.0
8282
hooks:
8383
- id: check-github-workflows
8484
- id: check-readthedocs

0 commit comments

Comments
 (0)