From 39ad132980fb7abe3f8eb1d2e606a7bb3e65c2f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 May 2021 03:57:15 +0000 Subject: [PATCH] Automatically update and run pre-commit hooks --- .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 a5d99aa..285bd2f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,21 +9,21 @@ repos: # Automatically sort imports with isort - repo: https://github.com/timothycrosley/isort.git - rev: 5.7.0 + rev: 5.8.0 hooks: - id: isort additional_dependencies: [toml] # Automatic source code formatting with Black - repo: https://github.com/psf/black - rev: 20.8b1 + rev: 21.5b1 hooks: - id: black args: [--safe, --quiet] # Enforce style with Flake8 - repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.4 + rev: 3.9.2 hooks: - id: flake8 # Exclude docstring checks, ignore E203 (see https://github.com/PyCQA/pycodestyle/issues/373) @@ -32,7 +32,7 @@ repos: # Syntax check with pre-commit out-of-the-box hooks - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.4.0 + rev: v4.0.1 hooks: - id: end-of-file-fixer - id: requirements-txt-fixer