From e0a3a57eaa23f68eb64ab24b26be269d4188e09f Mon Sep 17 00:00:00 2001 From: Brian Rutledge Date: Sat, 12 Jun 2021 10:00:34 -0400 Subject: [PATCH] Install missing stubs for mypy 0.900 (#762) * Install missing stubs for mypy 0.900 * Update mypy issue --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index d92d8a2b..542d0f5c 100644 --- a/tox.ini +++ b/tox.ini @@ -73,6 +73,9 @@ deps = lxml # required for more thorough type declarations keyring >= 22.3 + # consider replacing with `mypy --install-types` when + # https://github.com/python/mypy/issues/10600 is resolved + types-requests commands = mypy --html-report mypy --txt-report mypy {posargs:twine} python -c 'with open("mypy/index.txt") as f: print(f.read())'