Skip to content

Commit 2cc6d27

Browse files
πŸ”§ MAINTAIN: pre-commit autoupdate (#10)
- [github.com/pre-commit/pre-commit-hooks: v3.3.0 β†’ v4.0.1](pre-commit/pre-commit-hooks@v3.3.0...v4.0.1) - [github.com/pycqa/isort: 5.8.0 β†’ 5.9.3](PyCQA/isort@5.8.0...5.9.3) - [github.com/psf/black: 20.8b1 β†’ 21.7b0](psf/black@20.8b1...21.7b0) - https://gitlab.com/pycqa/flake8 β†’ https://github.com/PyCQA/flake8 - [github.com/PyCQA/flake8: 3.8.4 β†’ 3.9.2](PyCQA/flake8@3.8.4...3.9.2) - [github.com/pre-commit/mirrors-mypy: v0.790 β†’ v0.910](pre-commit/mirrors-mypy@v0.790...v0.910) - [github.com/asottile/setup-cfg-fmt: v1.16.0 β†’ v1.17.0](asottile/setup-cfg-fmt@v1.16.0...v1.17.0)
1 parent 07f3f8e commit 2cc6d27

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

β€Ž.pre-commit-config.yamlβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude: >
1111
repos:
1212

1313
- repo: https://github.com/pre-commit/pre-commit-hooks
14-
rev: v3.3.0
14+
rev: v4.0.1
1515
hooks:
1616
- id: check-json
1717
- id: check-yaml
@@ -26,29 +26,29 @@ repos:
2626
additional_dependencies: [setuptools>=46.4.0]
2727

2828
- repo: https://github.com/pycqa/isort
29-
rev: 5.8.0
29+
rev: 5.9.3
3030
hooks:
3131
- id: isort
3232

3333
- repo: https://github.com/psf/black
34-
rev: 20.8b1
34+
rev: 21.7b0
3535
hooks:
3636
- id: black
3737

38-
- repo: https://gitlab.com/pycqa/flake8
39-
rev: 3.8.4
38+
- repo: https://github.com/PyCQA/flake8
39+
rev: 3.9.2
4040
hooks:
4141
- id: flake8
4242
additional_dependencies: [flake8-bugbear==21.3.1]
4343

4444
- repo: https://github.com/pre-commit/mirrors-mypy
45-
rev: v0.790
45+
rev: v0.910
4646
hooks:
4747
- id: mypy
4848
additional_dependencies: []
4949

5050
- repo: https://github.com/asottile/setup-cfg-fmt
51-
rev: v1.16.0
51+
rev: v1.17.0
5252
hooks:
5353
- id: setup-cfg-fmt
5454

β€Žsetup.cfgβ€Ž

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ install_requires =
3636
python_requires = ~=3.6
3737
include_package_data = True
3838

39+
[options.packages.find]
40+
exclude =
41+
test*
42+
3943
[options.extras_require]
4044
code_style =
4145
pre-commit~=2.12
@@ -55,17 +59,16 @@ theme_rtd =
5559
theme_sbt =
5660
sphinx-book-theme~=0.1.0
5761

58-
[options.packages.find]
59-
exclude =
60-
test*
61-
6262
[mypy]
6363
show_error_codes = True
6464
warn_unused_ignores = True
6565
warn_redundant_casts = True
6666
no_implicit_optional = True
6767
strict_equality = True
6868

69+
[mypy-docutils.*]
70+
ignore_missing_imports = True
71+
6972
[flake8]
7073
max-line-length = 100
7174
extend-ignore = E203

0 commit comments

Comments
Β (0)