From dbd58d4c5100dde6449c5a2fd567ab5ae52232c6 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 5 Oct 2017 11:07:48 +0100 Subject: [PATCH] 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 --- setup.py | 7 ------- 1 file changed, 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.