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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-case-conflict
- id: check-merge-conflict
Expand All @@ -20,27 +20,27 @@ repos:
args: ["--pytest-test-first"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.2
rev: v0.15.12
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
- id: ruff-format

- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
rev: v2.4.2
hooks:
- id: codespell
additional_dependencies:
- tomli

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.31.3
rev: 0.37.2
hooks:
- id: check-github-workflows
args: ["--verbose"]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
rev: v1.20.2
hooks:
- id: mypy
files: src
Expand All @@ -49,13 +49,13 @@ repos:
- types-pyyaml

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.32.1
rev: 0.37.2
hooks:
- id: check-readthedocs
- id: check-dependabot
- id: check-github-workflows

Comment thread
0ctagon marked this conversation as resolved.
- repo: https://github.com/henryiii/validate-pyproject-schema-store
rev: 2025.02.24
rev: 2026.04.26
hooks:
- id: validate-pyproject
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,4 @@ extend-select = [
ignore = [
"E402", # module level import not at top of file
"NPY002", # Replace legacy `np.random` call with `np.random.Generator`
"PD901", # Avoid using the generic variable name `df` for DataFrames
]
Loading