diff --git a/.drone.yml b/.drone.yml index 4d007b49ab..7ac66129b7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,7 @@ pipeline: image: python:3.5 commands: - XDG_CACHE_HOME=/drone/pip-cache pip install wheel - - XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing,docs] + - XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing] - isort --check-only --diff --recursive wagtail js: image: node:4.2.4 @@ -24,7 +24,7 @@ pipeline: image: python:3.5 commands: - XDG_CACHE_HOME=/drone/pip-cache pip install wheel - - XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing,docs] + - XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing] - python -u runtests.py cache: diff --git a/setup.py b/setup.py index e2dc71e7da..736bdf08c5 100755 --- a/setup.py +++ b/setup.py @@ -53,11 +53,11 @@ testing_extras = [ # Documentation dependencies documentation_extras = [ - 'pyenchant==1.6.6', + 'pyenchant==1.6.8', 'sphinxcontrib-spelling>=2.3.0', - 'Sphinx>=1.3.1', - 'sphinx-autobuild>=0.5.2', - 'sphinx_rtd_theme>=0.1.8', + 'Sphinx>=1.5.2', + 'sphinx-autobuild>=0.6.0', + 'sphinx_rtd_theme>=0.1.9', ] setup(