Skip to content
Merged
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 @@ -8,7 +8,7 @@ repos:
- id: pyupgrade
args: [ '--py310-plus' ]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-merge-conflict
- id: check-json
Expand All @@ -30,7 +30,7 @@ repos:
exclude: ".geojson|.ipynb"
- id: trailing-whitespace
- repo: https://github.com/pappasam/toml-sort
rev: v0.24.2
rev: v0.24.3
hooks:
- id: toml-sort-fix
- repo: https://github.com/adrienverge/yamllint.git
Expand All @@ -50,17 +50,17 @@ repos:
- id: rst-inline-touching-normal
- id: text-unicode-replacement-char
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.1.0
rev: 25.9.0
hooks:
- id: black
args: [ '--target-version=py310' ]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.7
rev: v0.13.3
hooks:
- id: ruff
args: [ '--fix', '--show-fixes' ]
- repo: https://github.com/pylint-dev/pylint
rev: v3.3.7
rev: v3.3.9
hooks:
- id: pylint
args: [ '--rcfile=.pylintrc.toml', '--errors-only', '--jobs=0', '--disable=import-error' ]
Expand All @@ -75,7 +75,7 @@ repos:
hooks:
- id: vulture
- repo: https://github.com/PyCQA/isort
rev: 6.0.1
rev: 6.1.0
hooks:
- id: isort
- repo: https://github.com/nbQA-dev/nbQA
Expand All @@ -97,13 +97,13 @@ repos:
files: ".ipynb"
args: [ '--keep-output', '--keep-count' ]
- repo: https://github.com/keewis/blackdoc
rev: v0.4.1
rev: v0.4.3
hooks:
- id: blackdoc
additional_dependencies: [ 'black==25.1.0' ]
additional_dependencies: [ 'black==25.9.0' ]
- id: blackdoc-autoupdate-black
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.2
rev: 0.34.0
hooks:
- id: check-github-workflows
- id: check-readthedocs
Expand Down
Loading