Skip to content
Open
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
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
- repo: "https://github.com/pre-commit/pre-commit-hooks"
# Stay at pre-commit-hooks version 5, because pre-commit-hooks drops
# support for Python 3.8 in version 6. Latest 5 version is v5.0.0.
rev: "v5.0.0"
rev: "v6.0.0"
hooks:
### Git ###
# Protect specific branches from direct check-ins.
Expand Down Expand Up @@ -121,7 +121,7 @@ repos:
# Stay at version 0.30.0 together with jsonschema <=4.18, because
# higher versions require regress>=2024.11.1, but only
# regress <=2024.8.1 seems to support Python 3.8
rev: "0.30.0"
rev: "0.37.4"
hooks:
# Validate Dependabot Config (v2) against the schema provided by
# SchemaStore.
Expand Down Expand Up @@ -160,7 +160,7 @@ repos:
- repo: "https://github.com/PyCQA/isort"
# Stay at isort version 5, because isort drops support for Python
# 3.8 in version 6. Latest 5 version is 5.13.2.
rev: "5.13.2"
rev: "9.0.0a3"
hooks:
# Sort import statements with isort
- id: "isort"
Expand All @@ -178,7 +178,7 @@ repos:
- repo: "https://github.com/psf/black-pre-commit-mirror"
# Stay at black version 23, because some formatting rules change in
# version 24. Latest 23 version is 23.12.1.
rev: "23.12.1"
rev: "26.5.1"
hooks:
# Format Python code with black.
- id: "black"
Expand All @@ -194,7 +194,7 @@ repos:
# Stay at flake8 version 7.1.2, because higher versions require
# pycodestyle >=2.13.0, but only pycodestyle <=2.12.1 seems to
# support Python 3.8
rev: "7.1.2"
rev: "7.3.0"
hooks:
# Lint Python code with Flake8.
- id: "flake8"
Expand All @@ -218,7 +218,7 @@ repos:
- repo: "https://github.com/PyCQA/bandit"
# Stay at bandit version 1.7.10, because bandit drops support for
# Python 3.8 in version 1.8.0. Latest 1.7 version is 1.7.10.
rev: "1.7.10"
rev: "1.9.4"
hooks:
# Check code security with bandit.
- id: "bandit"
Expand All @@ -242,7 +242,7 @@ repos:
- repo: "https://github.com/maxwinterstein/shfmt-py"
# Stay at shfmt-py version v3.7.0.1, because shfmt-py drops support
# for Python 3.8 in version v3.11.0.2.
rev: "v3.7.0.1"
rev: "v4.0.0"
hooks:
# Format shell scripts with shfmt.
# NOTE: The official shfmt hook from
Expand All @@ -265,7 +265,7 @@ repos:
- repo: "https://github.com/shellcheck-py/shellcheck-py"
# Stay at shellcheck-py version v0.10.0.1, because shellcheck-py
# drops support for Python 3.8 in version v0.11.0.1.
rev: "v0.10.0.1"
rev: "v0.11.0.1"
hooks:
# Lint shell scripts with shellcheck.
# NOTE: The official shellcheck hook from
Expand All @@ -291,7 +291,7 @@ repos:
# v0.12.0 requires ruby2.7
# v0.11.0 and v0.10.0 require ruby2.6
# => stay at v0.9.0
rev: "v0.9.0"
rev: "v0.17.0"
hooks:
# Lint Markdown files with markdownlint.
- id: "markdownlint"
Loading