diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index b678ca9..fa028e4 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -1,5 +1,6 @@ - id: mypy name: mypy + description: '' entry: mypy language: python 'types_or': [python, pyi] diff --git a/.version b/.version index 9c0c75c..779c00b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.931 +0.940 diff --git a/setup.py b/setup.py index a590311..e0f452b 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ +from __future__ import annotations + from setuptools import setup setup( name='pre_commit_placeholder_package', version='0.0.0', - install_requires=['mypy==0.931'], + install_requires=['mypy==0.940'], )