Skip to content

Commit d1202f6

Browse files
fix: add pre-commit hook for black formatting
1 parent ecee483 commit d1202f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ repos:
2121
hooks:
2222
- id: codespell
2323
- repo: https://github.com/pycqa/isort
24-
rev: 5.12.0 # Use the latest stable version
24+
rev: 6.0.1 # Use the latest stable version
2525
hooks:
2626
- id: isort
2727
args:
2828
- --profile=black # Optional, makes isort compatible with Black
2929
- repo: https://github.com/psf/black
30-
rev: 24.2.0 # matching versions in pyproject.toml and github actions
30+
rev: 25.1.0 # matching versions in pyproject.toml and github actions
3131
hooks:
3232
- id: black
3333
args: ["--check", "-v", "datajoint", "tests", "--diff"] # --required-version is conflicting with pre-commit
3434
- repo: https://github.com/PyCQA/flake8
35-
rev: 7.1.2
35+
rev: 7.3.0
3636
hooks:
3737
# syntax tests
3838
- id: flake8

0 commit comments

Comments
 (0)