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:
authorStephen Finucane <stephen@that.guru>2017-10-05 13:07:48 +0300
committerStephen Finucane <stephen@that.guru>2017-10-10 16:03:48 +0300
commitdbd58d4c5100dde6449c5a2fd567ab5ae52232c6 (patch)
tree082f47d8f4f4d3b43ec3a6148f367567181df707 /setup.py
parent8fb03f5967e64e1a30c80e0fa020d1ad05e537a3 (diff)
setup.py: Stop caring about pip 1.5.6
This version is silly old and anyone that's _still_ using this is not going to be building Sphinx from source. Simply remove it. Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index af21f3938..b2d7ad4cc 100644
--- a/setup.py
+++ b/setup.py
@@ -75,13 +75,6 @@ extras_require = {
],
}
-# for sdist installation with pip-1.5.6
-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.