Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #113

Merged
merged 3 commits into from
Mar 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
args: ['--maxkb=25']
Expand All @@ -23,11 +23,11 @@ repos:
- id: python-use-type-annotations
- id: text-unicode-replacement-char
- repo: https://github.com/aio-libs/sort-all
rev: v1.2.0
rev: v1.3.0
hooks:
- id: sort-all
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.4
rev: v0.9.9
hooks:
- id: ruff
- id: ruff-format
Expand All @@ -36,11 +36,11 @@ repos:
hooks:
- id: refurb
- repo: https://github.com/kynan/nbstripout
rev: 0.7.1
rev: 0.8.1
hooks:
- id: nbstripout
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.17
rev: 0.7.22
hooks:
- id: mdformat
additional_dependencies: [
Expand All @@ -51,7 +51,7 @@ repos:
args: [--wrap, "88"]
files: (docs/.)
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.17
rev: 0.7.22
hooks:
- id: mdformat
additional_dependencies: [
Expand All @@ -61,7 +61,7 @@ repos:
args: [--wrap, "88"]
files: (README\.md)
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
- repo: meta
Expand Down
2 changes: 1 addition & 1 deletion src/pytask_parallel/logging.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Contains code relevant to logging."""
"""Contains code relevant to logging.""" # noqa: A005

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion src/pytask_parallel/typing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Contains functions related to typing."""
"""Contains functions related to typing.""" # noqa: A005

from pathlib import Path
from pathlib import PosixPath
Expand Down