diff options
author | Marc Mueller <30130371+cdce8p@users.noreply.github.com> | 2021-02-21 23:17:11 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-02-28 21:52:27 +0100 |
commit | b10e05b6321750f6d526c664aaaadfb16f080c3c (patch) | |
tree | 80f972df4113adf371522bd5e0dcc45b32775a94 | |
parent | e50af7d0a758c802e19d90d88f9eca6d9dff117e (diff) | |
download | pylint-git-b10e05b6321750f6d526c664aaaadfb16f080c3c.tar.gz |
Update mypy pre-commit hook
-rw-r--r-- | .pre-commit-config.yaml | 2 | ||||
-rw-r--r-- | requirements_test_pre_commit.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 298a4b5a0..c840044b9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: types: [python] exclude: tests/functional/|tests/input|tests/extensions/data|tests/regrtest_data/|tests/data/|doc/ - repo: https://github.com/pre-commit/mirrors-mypy - rev: v0.800 + rev: v0.812 hooks: - id: mypy name: mypy diff --git a/requirements_test_pre_commit.txt b/requirements_test_pre_commit.txt index 1399e7d93..1acddec25 100644 --- a/requirements_test_pre_commit.txt +++ b/requirements_test_pre_commit.txt @@ -2,4 +2,4 @@ autoflake==1.4 black==20.8b1 flake8==3.8.4 isort==5.7.0 -mypy==0.800 +mypy==0.812 |