From 5a02544f0419d9490c551fb514d605ba139153dc Mon Sep 17 00:00:00 2001 From: Anton Agestam Date: Mon, 30 Jan 2023 13:01:18 +0100 Subject: [PATCH] fix: Bump pre-commit hooks to fix isort issue CI is broken on main due to this isort issue, the root cause lies in an underlying incompatible change in Poetry. https://github.com/PyCQA/isort/issues/2083 --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 658a96b8e..5705da742 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ minimum_pre_commit_version: 2.9.2 repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.1.0 + rev: v4.4.0 hooks: - id: trailing-whitespace exclude: ^vendor/|^tests/.*/fixtures/.*|^tests/integration/test_data/.* @@ -11,18 +11,18 @@ repos: - id: debug-statements - repo: https://github.com/PyCQA/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort name: isort (python) - repo: https://github.com/psf/black - rev: 22.3.0 + rev: 22.12.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 4.0.1 + rev: 6.0.0 hooks: - id: flake8