summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-09-05 00:04:33 -0700
committerGitHub <noreply@github.com>2018-09-05 00:04:33 -0700
commit085f5093c705c9cd6a3a802bf2ce86e98bcc84f1 (patch)
treeee72de3d5dd4ad07b0c31a8092f2ce7a00697a43
parent1641f54458686eace59bb195fda0e78fb2ecb83f (diff)
parent1b9d593ff64a2eeb41a1265c2653ea22d8360173 (diff)
downloadcmd2-git-085f5093c705c9cd6a3a802bf2ce86e98bcc84f1.tar.gz
Merge pull request #510 from python-cmd2/unrestrict_sphinx_version
Unrestrict Sphinx version since they fixed their bug
-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 094229e8..0425cf7e 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<1.7.7', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11',
+ 'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11',
]
}
diff --git a/tox.ini b/tox.ini
index 40a8ba5e..150589b7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,7 +12,7 @@ setenv =
[testenv:docs]
basepython = python3.5
deps =
- sphinx<1.7.7
+ sphinx
sphinx-rtd-theme
changedir = docs
commands = sphinx-build -a -W -T -b html -d {envtmpdir}/doctrees . {envtmpdir}/html