From d9f988bb64902f710bb28a21f11a9cdd02433ffe Mon Sep 17 00:00:00 2001 From: Joshua Bronson Date: Mon, 27 Dec 2021 16:55:12 +0000 Subject: [PATCH] Upgrade to mypy 0.930 from 0.920 --- .pre-commit-config.yaml | 2 +- setup.py | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9e2cd6f..99f8a2d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: - id: codespell - repo: https://github.com/pre-commit/mirrors-mypy - rev: v0.920 + rev: v0.930 hooks: - id: mypy diff --git a/setup.py b/setup.py index dd0a447..377564a 100644 --- a/setup.py +++ b/setup.py @@ -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.)