From: Stephen Finucane Date: Sat, 27 Oct 2018 00:36:40 +0000 (+0100) Subject: docs: Remove crud from conf.py X-Git-Tag: v2.2.0-rc1~153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1fe2318882ed5fc9fea4cd1b9ef9039ba7c2212;p=thirdparty%2Fpatchwork.git docs: Remove crud from conf.py Most of this was removed in a previous release but there is yet more to go. These values are all (a) defaults or (b) never triggered. Remove them. Signed-off-by: Stephen Finucane --- diff --git a/docs/conf.py b/docs/conf.py index e0d8a2f7..98c7aa39 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,12 +5,6 @@ import os import sys -try: - import sphinx_rtd_theme - has_rtd_theme = True -except ImportError: - has_rtd_theme = False - PATCHWORK_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) sys.path.insert(0, PATCHWORK_DIR) @@ -28,17 +22,8 @@ needs_sphinx = '1.5' # ones. extensions = ['sphinx.ext.todo', 'reno.sphinxext'] -if has_rtd_theme: - html_theme = 'sphinx_rtd_theme' - -# Add any paths that contain templates here, relative to this directory. -templates_path = [] - -# The suffix(es) of source filenames. -# You can specify multiple suffix as a list of string: -# -# source_suffix = ['.rst', '.md'] -source_suffix = '.rst' +# The theme to use for HTML and HTML Help pages. +html_theme = 'sphinx_rtd_theme' # The master toctree document. master_doc = 'index' @@ -57,18 +42,6 @@ version = '.'.join((str(x) for x in VERSION[:3])) # The full version, including alpha/beta/rc tags. release = '.'.join((str(x) for x in VERSION)) -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# -# This is also used if you do content translation via gettext catalogs. -# Usually you set "language" from the command line for these cases. -language = None - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This patterns also effect to html_static_path and html_extra_path -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] - # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx'