summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMiro Hrončok <miro@hroncok.cz>2020-11-23 22:06:50 +0100
committerMiro Hrončok <miro@hroncok.cz>2020-11-23 22:08:43 +0100
commitba63f2811d1ce380ab5098a9ed6d8c6a9e18822a (patch)
tree1524b93316be2adf799cb807afb00bb1ca4cb516 /setup.py
parentbbc1ce368c0988b316575905cc406418f21bf3a6 (diff)
downloadsphinx-git-ba63f2811d1ce380ab5098a9ed6d8c6a9e18822a.tar.gz
Don't require typed_ast in [test] with Python 3.8+
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ca08a6d4a..8d40de1a8 100644
--- a/setup.py
+++ b/setup.py
@@ -51,7 +51,7 @@ extras_require = {
'pytest',
'pytest-cov',
'html5lib',
- 'typed_ast', # for py35-37
+ "typed_ast; python_version < '3.8'",
'cython',
],
}