From 5583f289df95f88f6c19bf7c86a3000225cc1eb2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 17:38:49 +0000 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.3.0...v6.0.0) - https://github.com/psf/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 22.6.0 → 26.1.0](https://github.com/psf/black-pre-commit-mirror/compare/22.6.0...26.1.0) - [github.com/PyCQA/isort: 5.10.1 → 7.0.0](https://github.com/PyCQA/isort/compare/5.10.1...7.0.0) - https://github.com/myint/docformatter → https://github.com/PyCQA/docformatter - [github.com/PyCQA/docformatter: v1.4 → v1.7.7](https://github.com/PyCQA/docformatter/compare/v1.4...v1.7.7) - [github.com/pre-commit/mirrors-prettier: v2.7.1 → v4.0.0-alpha.8](https://github.com/pre-commit/mirrors-prettier/compare/v2.7.1...v4.0.0-alpha.8) - [github.com/PyCQA/flake8: 5.0.4 → 7.3.0](https://github.com/PyCQA/flake8/compare/5.0.4...7.3.0) - [github.com/kynan/nbstripout: 0.6.0 → 0.9.0](https://github.com/kynan/nbstripout/compare/0.6.0...0.9.0) --- .pre-commit-config.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3987b46..2472e33 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v6.0.0 hooks: # list of supported hooks: https://pre-commit.com/hooks.html - id: trailing-whitespace @@ -11,41 +11,41 @@ repos: - id: detect-private-key # python code formatting - - repo: https://github.com/psf/black - rev: 22.6.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.1.0 hooks: - id: black args: [--line-length, "99"] # python import sorting - repo: https://github.com/PyCQA/isort - rev: 5.10.1 + rev: 7.0.0 hooks: - id: isort args: ["--profile", "black", "--filter-files"] # python docstring formatting - - repo: https://github.com/myint/docformatter - rev: v1.4 + - repo: https://github.com/PyCQA/docformatter + rev: v1.7.7 hooks: - id: docformatter args: [--in-place, --wrap-summaries, "99", --wrap-descriptions, "92"] # yaml formatting - repo: https://github.com/pre-commit/mirrors-prettier - rev: v2.7.1 + rev: v4.0.0-alpha.8 hooks: - id: prettier types: [yaml] # python code analysis - repo: https://github.com/PyCQA/flake8 - rev: 5.0.4 + rev: 7.3.0 hooks: - id: flake8 # jupyter notebook cell output clearing - repo: https://github.com/kynan/nbstripout - rev: 0.6.0 + rev: 0.9.0 hooks: - id: nbstripout