Skip to content

Commit 09fa80b

Browse files
[pre-commit.ci] pre-commit autoupdate (#7)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Tobias Raabe <[email protected]>
1 parent 5ed1614 commit 09fa80b

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.pre-commit-config.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v3.4.0
3+
rev: v4.0.1
44
hooks:
55
- id: check-added-large-files
66
args: ['--maxkb=25']
@@ -10,7 +10,7 @@ repos:
1010
- id: debug-statements
1111
- id: end-of-file-fixer
1212
- repo: https://github.com/pre-commit/pygrep-hooks
13-
rev: v1.8.0
13+
rev: v1.9.0
1414
hooks:
1515
- id: python-check-blanket-noqa
1616
- id: python-check-mock-methods
@@ -22,25 +22,25 @@ repos:
2222
- id: rst-inline-touching-normal
2323
- id: text-unicode-replacement-char
2424
- repo: https://github.com/asottile/pyupgrade
25-
rev: v2.10.0
25+
rev: v2.23.0
2626
hooks:
2727
- id: pyupgrade
2828
args: [--py36-plus]
2929
- repo: https://github.com/asottile/reorder_python_imports
30-
rev: v2.4.0
30+
rev: v2.6.0
3131
hooks:
3232
- id: reorder-python-imports
3333
- repo: https://github.com/psf/black
34-
rev: 20.8b1
34+
rev: 21.7b0
3535
hooks:
3636
- id: black
3737
- repo: https://github.com/asottile/blacken-docs
38-
rev: v1.9.2
38+
rev: v1.10.0
3939
hooks:
4040
- id: blacken-docs
4141
additional_dependencies: [black]
42-
- repo: https://gitlab.com/pycqa/flake8
43-
rev: 3.8.4
42+
- repo: https://github.com/PyCQA/flake8
43+
rev: 3.9.2
4444
hooks:
4545
- id: flake8
4646
additional_dependencies: [
@@ -59,16 +59,16 @@ repos:
5959
Pygments,
6060
]
6161
- repo: https://github.com/PyCQA/doc8
62-
rev: 0.9.0a1
62+
rev: 0.9.0
6363
hooks:
6464
- id: doc8
6565
- repo: https://github.com/econchick/interrogate
66-
rev: 1.3.2
66+
rev: 1.4.0
6767
hooks:
6868
- id: interrogate
6969
args: [-v, --fail-under=40, src, tests]
7070
- repo: https://github.com/codespell-project/codespell
71-
rev: v2.0.0
71+
rev: v2.1.0
7272
hooks:
7373
- id: codespell
7474
args: [-L bringin, -L unparseable]

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ ignore =
5858
E203 ; ignore whitespace around : which is enforced by Black.
5959
W503 ; ignore linebreak before binary operator which is enforced by Black.
6060
PT006 ; ignore that parametrizing tests with tuple argument names is preferred.
61+
PT023 ; ignores parentheses at the end of markers.
6162
max-line-length = 88
6263
warn-symbols =
6364
pytest.mark.wip = Remove 'wip' mark for tests.

0 commit comments

Comments
 (0)