diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 60ce732..89b0aba 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -161,6 +161,7 @@ repos: # the dev section of setup.py to avoid discrepancies in type # checking between environments. additional_dependencies: + - types-boto3 - types-docopt - types-setuptools - repo: https://github.com/pypa/pip-audit diff --git a/setup.py b/setup.py index f1f0734..069ce55 100644 --- a/setup.py +++ b/setup.py @@ -107,6 +107,7 @@ def get_version(version_file): # field of the mypy pre-commit hook to avoid discrepancies in type # checking between environments. "dev": [ + "types-boto3", "types-docopt", "types-setuptools", ],