From 67c33d244167d7ba48394a032622a6b5fa79b8e3 Mon Sep 17 00:00:00 2001 From: Dario Bauer <454259+dariobauer@users.noreply.github.com> Date: Tue, 6 Feb 2024 21:24:49 +0100 Subject: [PATCH] Disable reorder-python-imports dependancy (#58) Disable the reorder-python-imports dependancy due to incompatibility with Black 24 (closes Issue #57). --- .pre-commit-config.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ffe3c8f..7a38c75 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,12 +6,13 @@ repos: rev: v2.5.0 hooks: - id: setup-cfg-fmt - - repo: https://github.com/asottile/reorder-python-imports - rev: v3.12.0 - hooks: - - id: reorder-python-imports - name: Reorder Python imports (src, tests) - args: ["--application-directories", "src"] + # Disable reorder-python-imports due to incompatability with Black 24 (Issue #57) + # - repo: https://github.com/asottile/reorder-python-imports + # rev: v3.12.0 + # hooks: + # - id: reorder-python-imports + # name: Reorder Python imports (src, tests) + # args: ["--application-directories", "src"] - repo: https://github.com/asottile/pyupgrade rev: v3.15.0 hooks: