From 70ed1e54185e0d76875a0532aa5407421af0ea44 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Tue, 6 Dec 2022 13:42:57 -0500 Subject: [PATCH] Run pre-commit autoupdate, pinning flake8 at 5.0.4 `flake8` 6.0.0 requires Python >= 3.8. Python 3.7 goes EOL on 2023-06-27, so we will stay with flake8 < 6.0.0 until then. The `flake8` issue was previously seen in case-prov PR 55. References: * https://github.com/casework/CASE-Implementation-PROV-O/pull/55 * https://www.python.org/downloads/ * https://peps.python.org/pep-0537/ Signed-off-by: Alex Nelson --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c952e8e..d6274fe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,10 @@ repos: - repo: https://github.com/psf/black - rev: 22.3.0 + rev: 22.10.0 hooks: - id: black - repo: https://github.com/pycqa/flake8 - rev: 4.0.1 + rev: 5.0.4 hooks: - id: flake8 - repo: https://github.com/pycqa/isort