Skip to content

Commit b234ff8

Browse files
[pre-commit.ci] pre-commit autoupdate (#436)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Tobias Raabe <[email protected]>
1 parent 02bf5e4 commit b234ff8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,27 @@ repos:
2424
- id: python-no-log-warn
2525
- id: text-unicode-replacement-char
2626
- repo: https://github.com/asottile/reorder-python-imports
27-
rev: v3.11.0
27+
rev: v3.12.0
2828
hooks:
2929
- id: reorder-python-imports
3030
args: [--py38-plus, --add-import, 'from __future__ import annotations']
3131
exclude: ^(docs_src/)
3232
- repo: https://github.com/asottile/reorder-python-imports
33-
rev: v3.11.0
33+
rev: v3.12.0
3434
hooks:
3535
- id: reorder-python-imports
3636
args: [--py38-plus]
3737
files: ^(docs_src/)
3838
- repo: https://github.com/asottile/setup-cfg-fmt
39-
rev: v2.4.0
39+
rev: v2.5.0
4040
hooks:
4141
- id: setup-cfg-fmt
4242
- repo: https://github.com/psf/black
4343
rev: 23.9.1
4444
hooks:
4545
- id: black
4646
- repo: https://github.com/astral-sh/ruff-pre-commit
47-
rev: v0.0.291
47+
rev: v0.0.292
4848
hooks:
4949
- id: ruff
5050
- repo: https://github.com/dosisod/refurb
@@ -128,7 +128,7 @@ repos:
128128
- id: nbstripout
129129
exclude: (docs)
130130
- repo: https://github.com/codespell-project/codespell
131-
rev: v2.2.5
131+
rev: v2.2.6
132132
hooks:
133133
- id: codespell
134134
additional_dependencies: [tomli]

docs/source/how_to_guides/bp_structure_of_task_files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This section provides advice on how to structure task files.
1010
- A task function should be the first function in a task module.
1111

1212
:::{seealso}
13-
The only exception might be for {doc}`repititions <bp_scalable_repetitions_of_tasks>`.
13+
The only exception might be for {doc}`repetitions <bp_scalable_repetitions_of_tasks>`.
1414
:::
1515

1616
- The purpose of the task function is to handle IO operations like loading and saving

docs/source/reference_guides/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ by the host or by plugins. The following marks are available by default.
5050
```{eval-rst}
5151
.. function:: pytask.mark.persist()
5252
53-
A marker for a task which should be peristed.
53+
A marker for a task which should be persisted.
5454
```
5555

5656
```{eval-rst}

src/_pytask/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def build( # noqa: C901, PLR0912, PLR0913, PLR0915
9898
Whether a dry-run should be performed that shows which tasks need to be rerun.
9999
editor_url_scheme
100100
An url scheme that allows to click on task names, node names and filenames and
101-
jump right into you preferred edior to the right line.
101+
jump right into you preferred editor to the right line.
102102
expression
103103
Same as ``-k`` on the command line. Select tasks via expressions on task ids.
104104
force

0 commit comments

Comments
 (0)