summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-11-16 05:18:52 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2018-11-16 05:23:56 -0800
commit3bc938cebaf983911fb180852546583c16e4357d (patch)
tree085f38de87fb0ee815fa2cfa2d4030af20841c5b /setup.py
parent6c94801ec23ff6d4dda1e2aeb2f874bfb8b382ed (diff)
downloadsphinx-git-3bc938cebaf983911fb180852546583c16e4357d.tar.gz
Drop explicit dependency: typed_ast
typed-ast has been a required dependency of mypy since v0.470. Can rely on it being installed as a transient dependency and not list it explicitly. For the change in mypy, see: https://github.com/python/mypy/commit/a207754a7e426359812c7ae490ea13c979762b51
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index a9c8f463d..76986044a 100644
--- a/setup.py
+++ b/setup.py
@@ -45,8 +45,7 @@ extras_require = {
'html5lib',
'flake8>=3.5.0',
'flake8-import-order',
- 'mypy',
- 'typed_ast',
+ 'mypy>=0.470',
],
}