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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ ci:
skip: [pylint]

repos:
- repo: https://github.com/psf/black
rev: 24.8.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.1.0
hooks:
- id: black
additional_dependencies: ['click<8.1']
Expand All @@ -13,7 +13,7 @@ repos:
["--line-length=100"]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0 # Use the ref you want to point at
rev: v6.0.0 # Use the ref you want to point at
hooks:
- id: check-json
- id: check-xml
Expand All @@ -29,14 +29,14 @@ repos:
description: Forces line endings to the UNIX LF character

- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.11.2'
rev: 'v1.19.1'
hooks:
- id: mypy
args: ["--config-file=.mypy.ini"]
additional_dependencies: ['numpy>=1.21.2']

- repo: https://github.com/PyCQA/pylint
rev: 'v3.3.1'
rev: 'v4.0.5'
hooks:
- id: pylint
name: pylint
Expand Down