Skip to content

Commit 293e645

Browse files
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/pre-commit/pre-commit-hooks: v5.0.0 → v6.0.0](pre-commit/pre-commit-hooks@v5.0.0...v6.0.0) - [github.com/scop/pre-commit-shfmt: v3.11.0-1 → v3.12.0-2](scop/pre-commit-shfmt@v3.11.0-1...v3.12.0-2) - [github.com/koalaman/shellcheck-precommit: v0.10.0 → v0.11.0](koalaman/shellcheck-precommit@v0.10.0...v0.11.0) - https://github.com/psf/blackhttps://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 25.1.0 → 25.11.0](psf/black-pre-commit-mirror@25.1.0...25.11.0) - [github.com/PyCQA/isort: 6.0.1 → 7.0.0](PyCQA/isort@6.0.1...7.0.0) - [github.com/astral-sh/ruff-pre-commit: v0.11.9 → v0.14.7](astral-sh/ruff-pre-commit@v0.11.9...v0.14.7)
1 parent 8d305b5 commit 293e645

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ default_stages: [pre-commit, pre-push] # was [commit, push]
1212
repos:
1313
# ---------------------------------------------------- House-keeping hooks
1414
- repo: https://github.com/pre-commit/pre-commit-hooks
15-
rev: v5.0.0
15+
rev: v6.0.0
1616
hooks:
1717
- id: trailing-whitespace
1818
- id: end-of-file-fixer
@@ -37,37 +37,37 @@ repos:
3737

3838
# ------------------------------------------- Shell formatting & linting
3939
- repo: https://github.com/scop/pre-commit-shfmt
40-
rev: v3.11.0-1
40+
rev: v3.12.0-2
4141
hooks:
4242
- id: shfmt
4343
args: ["-i", "2", "-sr", "-ci"]
4444
files: "^scripts/.*\\.sh$" # only format our scripts/
4545
exclude: "^docker/" # avoid parsing docker/orchestrate.sh for now
4646

4747
- repo: https://github.com/koalaman/shellcheck-precommit
48-
rev: v0.10.0
48+
rev: v0.11.0
4949
hooks:
5050
- id: shellcheck
5151
args: ["--severity", "warning"]
5252
files: "^scripts/.*\\.sh$"
5353
exclude: "^docker/"
5454

5555
# ----------------------------------- Python formatters & linters stack
56-
- repo: https://github.com/psf/black
57-
rev: 25.1.0
56+
- repo: https://github.com/psf/black-pre-commit-mirror
57+
rev: 25.11.0
5858
hooks:
5959
- id: black
6060
language_version: python3.11 # <-- was python3.13
6161

6262
- repo: https://github.com/PyCQA/isort
63-
rev: 6.0.1
63+
rev: 7.0.0
6464
hooks:
6565
- id: isort
6666
args: ["--profile", "black"]
6767
language_version: python3.11 # <-- was python3.13
6868

6969
- repo: https://github.com/astral-sh/ruff-pre-commit
70-
rev: v0.11.9 # keep in sync with your lockfile/ruff version
70+
rev: v0.14.7 # keep in sync with your lockfile/ruff version
7171
hooks:
7272
# If you want the formatter, uncomment:
7373
# - id: ruff-format

0 commit comments

Comments
 (0)