Upgrade to mypy 0.930 from 0.920

This commit is contained in:
Joshua Bronson 2021-12-27 16:55:12 +00:00
parent eccde1a93b
commit d9f988bb64
2 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ repos:
- id: codespell
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.920
rev: v0.930
hooks:
- id: mypy

View File

@ -50,14 +50,14 @@ with open(join(CWD, 'README.rst'), encoding='utf-8') as f:
setup(
name='bidict',
author=METADATA.__author__, # type: ignore [attr-defined]
author_email=METADATA.__email__, # type: ignore [attr-defined]
description=METADATA.__description__, # type: ignore [attr-defined]
author=METADATA.__author__,
author_email=METADATA.__email__,
description=METADATA.__description__,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
keywords=METADATA.__keywords__, # type: ignore [attr-defined]
url=METADATA.__url__, # type: ignore [attr-defined]
license=METADATA.__license__, # type: ignore [attr-defined]
keywords=METADATA.__keywords__,
url=METADATA.__url__,
license=METADATA.__license__,
packages=['bidict'],
include_package_data=True,
zip_safe=False, # Don't zip. (We're zip-safe but prefer not to.)