From fb70129c0069d4c6677f1cabd32ecbe6affb275f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 17 May 2021 16:49:46 +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: v3.1.0 → v4.0.1](https://github.com/pre-commit/pre-commit-hooks/compare/v3.1.0...v4.0.1) - [github.com/asottile/blacken-docs: v1.7.0 → v1.10.0](https://github.com/asottile/blacken-docs/compare/v1.7.0...v1.10.0) - [github.com/psf/black: 20.8b0 → 21.5b1](https://github.com/psf/black/compare/20.8b0...21.5b1) - https://gitlab.com/pycqa/flake8 → https://github.com/PyCQA/flake8 - [github.com/PyCQA/flake8: 3.8.3 → 3.9.2](https://github.com/PyCQA/flake8/compare/3.8.3...3.9.2) - [github.com/asottile/reorder_python_imports: v2.3.0 → v2.5.0](https://github.com/asottile/reorder_python_imports/compare/v2.3.0...v2.5.0) - [github.com/asottile/add-trailing-comma: v2.0.1 → v2.1.0](https://github.com/asottile/add-trailing-comma/compare/v2.0.1...v2.1.0) --- .pre-commit-config.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7355e0f9..0fa87c68 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ exclude: (bin/run-figures) repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.1.0 + rev: v4.0.1 hooks: - id: check-added-large-files args: ['--maxkb=10000'] # 100 is too small for graphs @@ -13,21 +13,21 @@ repos: - id: mixed-line-ending - id: trailing-whitespace - repo: https://github.com/asottile/blacken-docs - rev: v1.7.0 + rev: v1.10.0 hooks: - id: blacken-docs files: '(\.md|\.rst)$' additional_dependencies: [black] - repo: https://github.com/psf/black - rev: 20.8b0 + rev: 21.5b1 hooks: - id: black args: ['--line-length=100'] files: '(\.pyi?|wscript|ipynb)$' language_version: python3.7 additional_dependencies: [black-nb] -- repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.3 +- repo: https://github.com/PyCQA/flake8 + rev: 3.9.2 hooks: - id: flake8 files: '(\.pyi?|wscript|ipynb)$' @@ -41,13 +41,13 @@ repos: # flake8-todo, flake8-unused-arguments, pep8-naming, pydocstyle, Pygments, # ] - repo: https://github.com/asottile/reorder_python_imports - rev: v2.3.0 + rev: v2.5.0 hooks: - id: reorder-python-imports files: '(\.pyi?|wscript)$' exclude: '.*conf(ig)*\.py' - repo: https://github.com/asottile/add-trailing-comma - rev: v2.0.1 + rev: v2.1.0 hooks: - id: add-trailing-comma args: [--py36-plus]