diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7355e0f..10a8636 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: v3.4.0 hooks: - id: check-added-large-files args: ['--maxkb=10000'] # 100 is too small for graphs @@ -13,13 +13,13 @@ repos: - id: mixed-line-ending - id: trailing-whitespace - repo: https://github.com/asottile/blacken-docs - rev: v1.7.0 + rev: v1.9.2 hooks: - id: blacken-docs files: '(\.md|\.rst)$' additional_dependencies: [black] - repo: https://github.com/psf/black - rev: 20.8b0 + rev: 20.8b1 hooks: - id: black args: ['--line-length=100'] @@ -27,7 +27,7 @@ repos: language_version: python3.7 additional_dependencies: [black-nb] - repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.3 + rev: 3.8.4 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.3.6 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]