From 5ead4737f9eead2e1254510ecd1d44cc85eb3795 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 03:42:39 +0000 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v4.4.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.3.0...v4.4.0) - [github.com/psf/black: 22.3.0 → 23.3.0](https://github.com/psf/black/compare/22.3.0...23.3.0) - [github.com/PyCQA/isort: 5.10.1 → 5.12.0](https://github.com/PyCQA/isort/compare/5.10.1...5.12.0) - [github.com/pre-commit/mirrors-mypy: v0.961 → v1.4.1](https://github.com/pre-commit/mirrors-mypy/compare/v0.961...v1.4.1) - [github.com/asottile/pyupgrade: v2.34.0 → v3.7.0](https://github.com/asottile/pyupgrade/compare/v2.34.0...v3.7.0) --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a801c36..c2bcbd1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ exclude: '^$|venv' repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -11,7 +11,7 @@ repos: - id: check-yaml - id: debug-statements - repo: https://github.com/psf/black - rev: 22.3.0 + rev: 23.3.0 hooks: - id: black language_version: python3.9 @@ -21,17 +21,17 @@ repos: - id: autoflake args: [ '--in-place', '--remove-all-unused-imports', '--remove-unused-variable' ] - repo: https://github.com/PyCQA/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort args: ['--line-length=79'] language_version: python3.9 - repo: https://github.com/pre-commit/mirrors-mypy - rev: v0.961 + rev: v1.4.1 hooks: - id: mypy - repo: https://github.com/asottile/pyupgrade - rev: v2.34.0 + rev: v3.7.0 hooks: - id: pyupgrade args: [--py36-plus]