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
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/python-poetry/poetry
rev: 1.8.0
rev: 2.2.1
hooks:
- id: poetry-check

Expand All @@ -10,7 +10,7 @@ repos:
- id: yesqa

- repo: https://github.com/asottile/pyupgrade
rev: v3.19.1
rev: v3.21.0
hooks:
- id: pyupgrade
args: ["--py38-plus"]
Expand All @@ -22,7 +22,7 @@ repos:
args: ["--in-place", "--remove-unused-variables"]

- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 7.0.0
hooks:
- id: isort
args:
Expand All @@ -35,7 +35,7 @@ repos:
]

- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
args: [--write-changes]
Expand All @@ -51,7 +51,7 @@ repos:
# language: python

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-ast
- id: check-case-conflict
Expand All @@ -73,14 +73,14 @@ repos:
args: ["--autofix"]
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: 24.10.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.9.0
hooks:
- id: black
args: ["--line-length", "120"]

- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8
args: ["--max-line-length", "120"]
Loading