Skip to content
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
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 7.0.0
hooks:
- id: isort
name: isort
Expand All @@ -10,30 +10,30 @@ repos:
types: [cython]
args: ["--profile=black"]

- repo: https://github.com/psf/black
rev: 24.8.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
hooks:
- id: black
types: [python]

- repo: https://github.com/asottile/blacken-docs
rev: 1.18.0
rev: 1.20.0
hooks:
- id: blacken-docs
additional_dependencies: ["black==24.8.0"]
additional_dependencies: ["black==25.12.0"]

- repo: https://github.com/kynan/nbstripout
rev: 0.7.1
rev: 0.8.2
hooks:
- id: nbstripout

- repo: https://github.com/nbQA-dev/nbQA
rev: 1.8.7
rev: 1.9.1
hooks:
- id: nbqa-isort
args: ["--profile=black"]
- id: nbqa-black
additional_dependencies: ["black==24.8.0"]
additional_dependencies: ["black==25.12.0"]
- id: nbqa-flake8

- repo: https://github.com/pre-commit/pygrep-hooks
Expand All @@ -50,7 +50,7 @@ repos:
types: [text]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -77,12 +77,12 @@ repos:
exclude: \.(html|svg)$

- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.5.0
rev: v3.2.0
hooks:
- id: setup-cfg-fmt

- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
black==24.8.0
black==25.12.0
identify>=1.4.20
pre-commit
Loading