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.

This commit is contained in:
shimizukawa 2016-01-06 07:27:34 +09:00
parent b0a5a1339e
commit dc0873adf6
2 changed files with 5 additions and 2 deletions

View File

@ -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)
====================================

View File

@ -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.