Compare commits

..

No commits in common. "main" and "v1.0.0" have entirely different histories.
main ... v1.0.0

3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
1.16.0 1.0.0

View File

@ -25,7 +25,7 @@ To change the arguments, override the `args` as follows:
```yaml ```yaml
hooks: hooks:
- id: mypy - id: mypy
args: [--strict, --ignore-missing-imports] args: [--no-strict-optional, --ignore-missing-imports]
``` ```
Because `pre-commit` runs `mypy` from an isolated virtualenv (without your Because `pre-commit` runs `mypy` from an isolated virtualenv (without your

View File

@ -6,5 +6,5 @@ from setuptools import setup
setup( setup(
name='pre_commit_placeholder_package', name='pre_commit_placeholder_package',
version='0.0.0', version='0.0.0',
install_requires=['mypy==1.16.0'], install_requires=['mypy==1.0.0'],
) )