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 @@ -3,7 +3,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.5.0"
rev: "v6.0.0"
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -18,34 +18,34 @@ repos:
- id: mixed-line-ending
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: "23.12.1"
- repo: https://github.com/psf/black-pre-commit-mirror
rev: "26.3.1"
hooks:
- id: black

- repo: https://github.com/PyCQA/flake8
rev: "7.0.0"
rev: "7.3.0"
hooks:
- id: flake8

- repo: https://github.com/PyCQA/isort
rev: "5.13.2"
rev: "8.0.1"
hooks:
- id: isort

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.8.0"
rev: "v1.20.1"
hooks:
- id: mypy

- repo: https://github.com/numpy/numpydoc
# The latest stable release doesn't yet support pre-commit.
rev: "v1.6.0"
rev: "v1.10.0"
hooks:
- id: numpydoc-validation

- repo: https://github.com/hadialqattan/pycln
rev: "v2.4.0"
rev: "v2.6.0"
hooks:
- id: pycln

Expand All @@ -57,7 +57,7 @@ repos:
exclude: test

- repo: https://github.com/sirosen/texthooks
rev: "0.6.3"
rev: "0.7.1"
hooks:
- id: fix-ligatures
- id: fix-smartquotes
Loading