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:
authorMiro Hrončok <miro@hroncok.cz>2020-11-24 00:06:50 +0300
committerMiro Hrončok <miro@hroncok.cz>2020-11-24 00:08:43 +0300
commitba63f2811d1ce380ab5098a9ed6d8c6a9e18822a (patch)
tree1524b93316be2adf799cb807afb00bb1ca4cb516 /setup.py
parentbbc1ce368c0988b316575905cc406418f21bf3a6 (diff)
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',
],
}