From b69bf0e9bb5c1f8dceb2a12e03f809c10a5b21ae Mon Sep 17 00:00:00 2001 From: David Ray Date: Tue, 21 Feb 2017 08:46:21 -0500 Subject: [PATCH] Updating Sphinx and other doc dep versions (#3386) * Updating Sphinx and other doc dep versions * Don't bother to install docs dependencies on Drone --- .drone.yml | 4 ++-- setup.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) 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(