diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-08-21 22:50:48 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-08-21 22:50:48 -0400 |
commit | 6d74e51aeb769033f1ce8657b8570fb2e167ed8a (patch) | |
tree | c2790e1b3f008a0968a1d00f34ccefe26c2e2102 | |
parent | 4db8dc3c0ebb7d56abc9ccf0f37f501d0a03a170 (diff) | |
download | cmd2-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-x | setup.py | 2 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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', ] } @@ -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 |