Fix #3683: sphinx.websupport module is not provided by default

This commit is contained in:
Takeshi KOMIYA 2017-05-03 22:58:30 +09:00
parent 1048a239c6
commit 0135948485
4 changed files with 4 additions and 3 deletions

View File

@ -25,6 +25,7 @@ Bugs fixed
* The ``make latexpdf`` from 1.6b1 (for GNU/Linux and Mac OS, using * The ``make latexpdf`` from 1.6b1 (for GNU/Linux and Mac OS, using
``latexmk``) aborted earlier in case of LaTeX errors than was the case with ``latexmk``) aborted earlier in case of LaTeX errors than was the case with
1.5 series, due to hard-coded usage of ``--halt-on-error`` option. (refs #3695) 1.5 series, due to hard-coded usage of ``--halt-on-error`` option. (refs #3695)
* #3683: sphinx.websupport module is not provided by default
Testing Testing
-------- --------

View File

@ -53,6 +53,7 @@ requires = [
'requests>=2.0.0', 'requests>=2.0.0',
'typing', 'typing',
'setuptools', 'setuptools',
'sphinxcontrib-websupport',
] ]
extras_require = { extras_require = {
# Environment Marker works for wheel 0.24 or later # Environment Marker works for wheel 0.24 or later
@ -60,7 +61,8 @@ extras_require = {
'colorama>=0.3.5', 'colorama>=0.3.5',
], ],
'websupport': [ 'websupport': [
'sphinxcontrib-websupport', 'sqlalchemy>=0.9',
'whoosh>=2.0',
], ],
'test': [ 'test': [
'pytest', 'pytest',

View File

@ -10,7 +10,6 @@ snowballstemmer>=1.1
babel babel
alabaster alabaster
sphinx_rtd_theme sphinx_rtd_theme
sphinxcontrib-websupport
imagesize imagesize
requests requests
html5lib html5lib

View File

@ -9,7 +9,6 @@ deps=
mock mock
enum34 enum34
typing typing
sphinxcontrib-websupport
setenv = setenv =
SPHINX_TEST_TEMPDIR = {envdir}/testbuild SPHINX_TEST_TEMPDIR = {envdir}/testbuild
PYTHONDONTWRITEBYTECODE = true PYTHONDONTWRITEBYTECODE = true