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:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-05-25 18:15:00 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-05-25 18:15:00 +0300
commitca6a1edd2f97795eaba94e79e7ba34c40f83e2c7 (patch)
treea1c462fdca8e47a1672e4dfd9d512241ca7eaee5 /setup.py
parentbf42f3434883c15141de3298ba7e875fca8e5702 (diff)
parent180d665b6c82f5758c8e5a5ecdad7af87aadbc1b (diff)
Merge branch 'stable'
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index e1d71163b..edcd4d673 100644
--- a/setup.py
+++ b/setup.py
@@ -60,6 +60,9 @@ extras_require = {
':sys_platform=="win32"': [
'colorama>=0.3.5',
],
+ ':python_version<"3.5"': [
+ 'typing'
+ ],
'websupport': [
'sqlalchemy>=0.9',
'whoosh>=2.0',
@@ -77,6 +80,9 @@ extras_require = {
if sys.platform == 'win32':
requires.append('colorama>=0.3.5')
+if sys.version_info < (3, 5):
+ requires.append('typing')
+
# Provide a "compile_catalog" command that also creates the translated
# JavaScript files if Babel is available.