From a07a14ece06e4fa335dd1b88ef48d2894992d78e Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 22 Sep 2020 17:34:09 -0500 Subject: [PATCH] chore: Update pre-commit hook revs (#40) * Update Black pre-commit hook to use rev v20.8b1 - Using pinned revs is the recommended approach for pre-commit: https://github.com/psf/black/issues/420 * Update flake8 pre-commit hook to use rev v3.8.3 --- .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 544e531..7abdafa 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,10 @@ repos: - repo: https://github.com/psf/black - rev: stable + rev: 20.8b1 hooks: - id: black language_version: python3 - repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.1 + rev: 3.8.3 hooks: - id: flake8