summaryrefslogtreecommitdiff
path: root/setup.py
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 /setup.py
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
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 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',
]
}