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 @@ -7,26 +7,26 @@ repos:
- id: seed-isort-config

- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 7.0.0
hooks:
- id: isort
args: ["--profile", "black"]

- repo: https://github.com/psf/black
rev: 24.4.2
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.1.0
hooks:
- id: black
args: [--target-version=py36]

- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
rev: v3.21.2
hooks:
- id: pyupgrade
args:
- --py36-plus

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
exclude: .bumpversion.cfg
Expand All @@ -45,7 +45,7 @@ repos:
- --autofix

- repo: https://github.com/PyCQA/flake8
rev: 7.2.0
rev: 7.3.0
hooks:
- id: flake8
additional_dependencies: [
Expand All @@ -64,14 +64,14 @@ repos:
]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
rev: v1.19.1
hooks:
- id: mypy
# This is for checking tests/* (everything else has a stricter check
# below), but since there's no include it's run on everything

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
rev: v1.19.1
hooks:
- id: mypy
args: [
Expand All @@ -81,7 +81,7 @@ repos:
exclude: tests/

- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
rev: v1.38.0
hooks:
- id: yamllint
# args: [--config-data=relaxed]
Expand Down
Loading