Skip to content

Commit ebdd4c6

Browse files
[pre-commit.ci] pre-commit autoupdate (#113)
1 parent 11821c5 commit ebdd4c6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.pre-commit-config.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.6.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-added-large-files
66
args: ['--maxkb=25']
@@ -23,11 +23,11 @@ repos:
2323
- id: python-use-type-annotations
2424
- id: text-unicode-replacement-char
2525
- repo: https://github.com/aio-libs/sort-all
26-
rev: v1.2.0
26+
rev: v1.3.0
2727
hooks:
2828
- id: sort-all
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.6.4
30+
rev: v0.9.9
3131
hooks:
3232
- id: ruff
3333
- id: ruff-format
@@ -36,11 +36,11 @@ repos:
3636
hooks:
3737
- id: refurb
3838
- repo: https://github.com/kynan/nbstripout
39-
rev: 0.7.1
39+
rev: 0.8.1
4040
hooks:
4141
- id: nbstripout
4242
- repo: https://github.com/executablebooks/mdformat
43-
rev: 0.7.17
43+
rev: 0.7.22
4444
hooks:
4545
- id: mdformat
4646
additional_dependencies: [
@@ -51,7 +51,7 @@ repos:
5151
args: [--wrap, "88"]
5252
files: (docs/.)
5353
- repo: https://github.com/executablebooks/mdformat
54-
rev: 0.7.17
54+
rev: 0.7.22
5555
hooks:
5656
- id: mdformat
5757
additional_dependencies: [
@@ -61,7 +61,7 @@ repos:
6161
args: [--wrap, "88"]
6262
files: (README\.md)
6363
- repo: https://github.com/codespell-project/codespell
64-
rev: v2.3.0
64+
rev: v2.4.1
6565
hooks:
6666
- id: codespell
6767
- repo: meta

src/pytask_parallel/logging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Contains code relevant to logging."""
1+
"""Contains code relevant to logging.""" # noqa: A005
22

33
from __future__ import annotations
44

src/pytask_parallel/typing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Contains functions related to typing."""
1+
"""Contains functions related to typing.""" # noqa: A005
22

33
from pathlib import Path
44
from pathlib import PosixPath

0 commit comments

Comments
 (0)