diff options
author | David Reid <dreid@dreid.org> | 2013-11-08 14:42:01 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-08 14:42:01 -0800 |
commit | 323faa72138f2e9c5249d9a42e7f42d741aec873 (patch) | |
tree | ab35e32a97383065b6b93c22e3a120fbe075c658 | |
parent | a5ba6e5493f6f523de90ea5ecf376c011f8e48ff (diff) | |
parent | 388c11a972695ba8c3a5f1a4c68345ce08a3219e (diff) | |
download | cryptography-323faa72138f2e9c5249d9a42e7f42d741aec873.tar.gz cryptography-323faa72138f2e9c5249d9a42e7f42d741aec873.tar.bz2 cryptography-323faa72138f2e9c5249d9a42e7f42d741aec873.zip |
Merge pull request #237 from alex/rtd-theme
Try to use the sphinx rtd theme locally if it's installed
-rw-r--r-- | dev-requirements.txt | 1 | ||||
-rw-r--r-- | docs/conf.py | 16 | ||||
-rw-r--r-- | tox.ini | 4 |
3 files changed, 16 insertions, 5 deletions
diff --git a/dev-requirements.txt b/dev-requirements.txt index 66f46d83..cd975d5c 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -4,4 +4,5 @@ pytest coverage sphinx tox +sphinx_rtd_theme -e . diff --git a/docs/conf.py b/docs/conf.py index 69be32e9..77050e72 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,6 +14,12 @@ import os import sys +try: + import sphinx_rtd_theme +except ImportError: + sphinx_rtd_theme = None + + # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. @@ -98,16 +104,18 @@ pygments_style = 'sphinx' # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'default' + +if sphinx_rtd_theme: + html_theme = "sphinx_rtd_theme" + html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +else: + html_theme = "default" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} -# Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] - # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". #html_title = None @@ -11,7 +11,9 @@ commands = coverage report -m [testenv:docs] -deps = sphinx +deps = + sphinx + sphinx_rtd_theme basepython = python2.7 commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html |