summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-08-21 22:50:48 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-08-21 22:50:48 -0400
commit6d74e51aeb769033f1ce8657b8570fb2e167ed8a (patch)
treec2790e1b3f008a0968a1d00f34ccefe26c2e2102
parent4db8dc3c0ebb7d56abc9ccf0f37f501d0a03a170 (diff)
downloadcmd2-git-6d74e51aeb769033f1ce8657b8570fb2e167ed8a.tar.gz
Restrict Sphinx version
This is trying to work around a bug in Sphinx: https://github.com/sphinx-doc/sphinx/issues/5322
-rwxr-xr-xsetup.py2
-rw-r--r--tox.ini2
2 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 0425cf7e..094229e8 100755
--- a/setup.py
+++ b/setup.py
@@ -76,7 +76,7 @@ EXTRAS_REQUIRE = {
# for python 3.5 and earlier we need the third party mock module
"mock ; python_version<'3.6'",
'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'pylint',
- 'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11',
+ 'sphinx<1.7.7', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11',
]
}
diff --git a/tox.ini b/tox.ini
index 150589b7..40a8ba5e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,7 +12,7 @@ setenv =
[testenv:docs]
basepython = python3.5
deps =
- sphinx
+ sphinx<1.7.7
sphinx-rtd-theme
changedir = docs
commands = sphinx-build -a -W -T -b html -d {envtmpdir}/doctrees . {envtmpdir}/html