Skip to content

Commit 4aa19d7

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 48ea085 commit 4aa19d7

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.github/workflows/continuous-integration-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
21-
python-version: ['3.6', '3.7', '3.8', '3.9']
21+
python-version: ['3.7', '3.8', '3.9']
2222

2323
steps:
2424
- uses: actions/checkout@v2

.pre-commit-config.yaml

+11-11
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=100']
@@ -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 # Use the ref you want to point at
13+
rev: v1.9.0 # Use the ref you want to point at
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.21.2
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.5.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
types: [python]
@@ -60,16 +60,16 @@ repos:
6060
Pygments,
6161
]
6262
- repo: https://github.com/PyCQA/doc8
63-
rev: 0.9.0a1
63+
rev: 0.9.0
6464
hooks:
6565
- id: doc8
6666
- repo: https://github.com/econchick/interrogate
67-
rev: 1.3.2
67+
rev: 1.4.0
6868
hooks:
6969
- id: interrogate
7070
args: [-v, --fail-under=40, src, tests]
7171
- repo: https://github.com/codespell-project/codespell
72-
rev: v2.0.0
72+
rev: v2.1.0
7373
hooks:
7474
- id: codespell
7575
args: [-L als, -L unparseable]

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ ignore =
3838
E203 ; ignores whitespace around : which is enforced by Black.
3939
W503 ; ignores linebreak before binary operator which is enforced by Black.
4040
PT006 ; ignores that parametrizing tests with tuple argument names is preferred.
41+
PT023 ; ignores parentheses for marks.
4142
max-line-length = 88
4243
warn-symbols =
4344
pytest.mark.wip = Remove 'wip' flag for tests.

0 commit comments

Comments
 (0)