From f0f5334c4022eab2f3a5ef2310ebea939972e7e8 Mon Sep 17 00:00:00 2001 From: Aron Griffis Date: Sat, 7 Nov 2015 16:37:16 -0500 Subject: [PATCH] Use sphinx_rtd_theme building docs locally --- docs/{vcr.rst => api.rst} | 0 docs/conf.py | 12 ++++++------ 2 files changed, 6 insertions(+), 6 deletions(-) rename docs/{vcr.rst => api.rst} (100%) diff --git a/docs/vcr.rst b/docs/api.rst similarity index 100% rename from docs/vcr.rst rename to docs/api.rst diff --git a/docs/conf.py b/docs/conf.py index 61ed49d..803c722 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -111,18 +111,18 @@ todo_include_todos = False # -- Options for HTML output ---------------------------------------------- -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'default' +# The theme to use for HTML and HTML Help pages. +# https://read-the-docs.readthedocs.org/en/latest/theme.html#how-do-i-use-this-locally-and-on-read-the-docs +if 'READTHEDOCS' not in os.environ: + import sphinx_rtd_theme + html_theme = 'sphinx_rtd_theme' + html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # 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 # " v documentation". #html_title = None