From 2373bdf400d1f55542024e7576f9b3d53e34525a Mon Sep 17 00:00:00 2001 From: moson-mo Date: Mon, 6 Feb 2023 09:12:00 +0100 Subject: [PATCH] fix(deps): bump pre-commit hooks Bump hooks with "pre-commit autoupdate". There is an issue with the latest poetry version and the "isort" hook module https://github.com/PyCQA/isort/issues/2077 Signed-off-by: moson-mo --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b2baec65..af14d704 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: v4.4.0 hooks: - id: check-added-large-files - id: check-case-conflict @@ -12,7 +12,7 @@ repos: - id: debug-statements - repo: https://github.com/myint/autoflake - rev: v1.7.7 + rev: v2.0.1 hooks: - id: autoflake args: @@ -21,16 +21,16 @@ repos: - --ignore-init-module-imports - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort - repo: https://github.com/psf/black - rev: 22.10.0 + rev: 23.1.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 5.0.4 + rev: 6.0.0 hooks: - id: flake8