From dc0873adf63b9097ea4705f7186158de373d17c3 Mon Sep 17 00:00:00 2001 From: shimizukawa Date: Wed, 6 Jan 2016 07:27:34 +0900 Subject: [PATCH] Fix #1820: On Windows, console coloring is broken with colorama version 0.3.3. Now sphinx use colorama>=0.3.5 to avoid this problem. --- CHANGES | 3 +++ setup.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 6bd03e17e..87c8530d8 100644 --- a/CHANGES +++ b/CHANGES @@ -31,6 +31,9 @@ Bugs fixed * #2125: Fix unifies behavior of collapsed fields (``GroupedField`` and ``TypedField``) * #1408: Check latex_logo validity before copying * #771: Fix latex output doesn't set tocdepth +* #1820: On Windows, console coloring is broken with colorama version 0.3.3. + Now sphinx use colorama>=0.3.5 to avoid this problem. + Release 1.3.3 (released Dec 2, 2015) ==================================== diff --git a/setup.py b/setup.py index 6bc288757..4ff63150d 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ requires = [ extras_require = { # Environment Marker works for wheel 0.24 or later ':sys_platform=="win32"': [ - 'colorama', + 'colorama>=0.3.5', ], 'websupport': [ 'sqlalchemy>=0.9', @@ -73,7 +73,7 @@ extras_require = { # for sdist installation with pip-1.5.6 if sys.platform == 'win32': - requires.append('colorama') + requires.append('colorama>=0.3.5') # Provide a "compile_catalog" command that also creates the translated # JavaScript files if Babel is available.