Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #262

Merged
merged 5 commits into from Mar 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 10 additions & 8 deletions .pre-commit-config.yaml
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.9.2
rev: 5.10.1
hooks:
- id: isort
name: isort
Expand All @@ -11,7 +11,7 @@ repos:
args: ["--profile=black"]

- repo: https://github.com/psf/black
rev: 21.7b0
rev: 21.12b0
hooks:
- id: black
args:
Expand All @@ -21,21 +21,22 @@ repos:
- "--target-version=py37"
- "--target-version=py38"
- "--target-version=py39"
- "--target-version=py310"
types: [python]

- repo: https://github.com/asottile/blacken-docs
rev: v1.10.0
rev: v1.12.1
hooks:
- id: blacken-docs
additional_dependencies: [black==21.7b0]
additional_dependencies: [black==21.12b0]

- repo: https://github.com/kynan/nbstripout
rev: 0.5.0
hooks:
- id: nbstripout

- repo: https://github.com/nbQA-dev/nbQA
rev: 1.0.0
rev: 1.3.1
hooks:
- id: nbqa-black
args:
Expand All @@ -46,7 +47,8 @@ repos:
- "--target-version=py37"
- "--target-version=py38"
- "--target-version=py39"
additional_dependencies: [black==21.7b0]
- "--target-version=py310"
additional_dependencies: [black==21.12b0]
- id: nbqa-flake8

- repo: https://github.com/pre-commit/pygrep-hooks
Expand All @@ -63,7 +65,7 @@ repos:
types: [text]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v4.1.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -90,7 +92,7 @@ repos:
exclude: \.(html|svg)$

- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
rev: 4.0.1
hooks:
- id: flake8
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
@@ -1,2 +1,2 @@
black==21.7b0; python_version>='3.6'
black==21.12b0; python_version>='3.6'
pre-commit