From b7cd665d2f3b6ad3565c5c54606212f3d4466975 Mon Sep 17 00:00:00 2001 From: Felix Hekhorn Date: Fri, 10 Jan 2025 12:51:51 +0200 Subject: [PATCH] Run pre-commit autoupdate and pin docformatter See also https://github.com/PyCQA/docformatter/issues/293 --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 91401016b..36f2eb7de 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,12 +14,12 @@ repos: - id: check-merge-conflict - id: debug-statements - repo: https://github.com/hadialqattan/pycln - rev: v2.4.0 + rev: v2.5.0 hooks: - id: pycln args: [--config=pyproject.toml] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.6 + rev: v0.9.0 hooks: # Run the linter. - id: ruff @@ -30,7 +30,7 @@ repos: # Run the formatter. - id: ruff-format - repo: https://github.com/PyCQA/docformatter - rev: v1.7.5 + rev: eb1df34 # TODO: wait for https://github.com/PyCQA/docformatter/issues/293 hooks: - id: docformatter additional_dependencies: [tomli]