Skip to content

Commit 97b96f3

Browse files
chore: Update pre-commit hooks
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/PyCQA/flake8: 7.2.0 → 7.3.0](PyCQA/flake8@7.2.0...7.3.0) - [github.com/pycqa/isort: 6.0.1 → 7.0.0](PyCQA/isort@6.0.1...7.0.0) - https://github.com/psf/blackhttps://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 25.1.0 → 25.12.0](psf/black-pre-commit-mirror@25.1.0...25.12.0)
1 parent d9c5aff commit 97b96f3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
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: v5.0.0
3+
rev: v6.0.0
44
hooks:
55
- id: trailing-whitespace # Trim trailing whitespace at the end of lines.
66
- id: end-of-file-fixer # Make sure files end in a newline and only a newline.
@@ -10,7 +10,7 @@ repos:
1010
- id: check-merge-conflict # Check for files that contain merge conflict strings.
1111

1212
- repo: https://github.com/PyCQA/flake8
13-
rev: 7.2.0
13+
rev: 7.3.0
1414
hooks:
1515
- id: flake8 # Check style and syntax. Does not modify code, issues have to be solved manually.
1616
args: [
@@ -19,7 +19,7 @@ repos:
1919
]
2020

2121
- repo: https://github.com/pycqa/isort
22-
rev: 6.0.1
22+
rev: 7.0.0
2323
hooks:
2424
- id: isort # Sort imports.
2525
args: [
@@ -31,8 +31,8 @@ repos:
3131
--ensure-newline-before-comments,
3232
]
3333

34-
- repo: https://github.com/psf/black
35-
rev: 25.1.0
34+
- repo: https://github.com/psf/black-pre-commit-mirror
35+
rev: 25.12.0
3636
hooks:
3737
- id: black # Format code.
3838
args: [--line-length=150]

0 commit comments

Comments
 (0)