Mirror: 0.940

This commit is contained in:
Github Actions 2022-03-12 08:34:13 +00:00
parent f6f816c65d
commit d37f9c4f0c
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,6 @@
- id: mypy - id: mypy
name: mypy name: mypy
description: ''
entry: mypy entry: mypy
language: python language: python
'types_or': [python, pyi] 'types_or': [python, pyi]

View File

@ -1 +1 @@
0.931 0.940

View File

@ -1,8 +1,10 @@
from __future__ import annotations
from setuptools import setup 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==0.931'], install_requires=['mypy==0.940'],
) )