diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 6876c2f..c3821ac 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -2,7 +2,8 @@ name: mypy entry: mypy language: python - 'types': [python] + 'types_or': [python, pyi] args: ["--ignore-missing-imports", "--scripts-are-modules"] require_serial: true additional_dependencies: [] + minimum_pre_commit_version: 2.9.2 diff --git a/setup.py b/setup.py index d55970b..0862667 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( - name='pre_commit_dummy_package', + name='pre_commit_placeholder_package', version='0.0.0', install_requires=['mypy==0.910'], )