Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunya Fukuda <junya.fukuda.e@gmail.com>2021-06-13 09:22:32 +0300
committerJunya Fukuda <junya.fukuda.e@gmail.com>2021-06-13 09:22:32 +0300
commit5c98b9fa7ca52fd8e728771d36bcc49720b07a6e (patch)
tree53daabf80692e9a0e6d1fe0a40f5e582ecae6851 /setup.py
parentde64bfdeace8250c5538409bc7dac80943e48609 (diff)
Fix mypy violations (Third-party Library Stubs) (with mypy-0.900)
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b669afc00..817b5e871 100644
--- a/setup.py
+++ b/setup.py
@@ -44,8 +44,11 @@ extras_require = {
'lint': [
'flake8>=3.5.0',
'isort',
- 'mypy>=0.800',
+ 'mypy>=0.900',
'docutils-stubs',
+ "types-typed-ast",
+ "types-pkg_resources",
+ "types-requests",
],
'test': [
'pytest',