From 33d861371533d64a54af419798f1ddfa692f388c Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Thu, 31 Dec 2020 11:10:18 -0800 Subject: [PATCH] Bump minimum_pre_commit_version per recommendation (#1895) Recommended by @asottile, the pre-commit author and maintainer, to avoid some breakages in version 2.9.0. --- .pre-commit-config.yaml | 2 +- .pre-commit-hooks.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c2580d2..dc95e90 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ repos: name: black language: system entry: black - minimum_pre_commit_version: 2.9.0 + minimum_pre_commit_version: 2.9.2 require_serial: true types_or: [python, pyi] diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index c575842..de2eb67 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -4,6 +4,6 @@ entry: black language: python language_version: python3 - minimum_pre_commit_version: 2.9.0 + minimum_pre_commit_version: 2.9.2 require_serial: true types_or: [python, pyi] -- 2.39.2