diff options
author | Stephen Finucane <stephen@that.guru> | 2018-10-27 01:36:40 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2019-01-29 09:35:08 +0000 |
commit | b1fe2318882ed5fc9fea4cd1b9ef9039ba7c2212 (patch) | |
tree | 18f8f5e423cd956932aa0d7c519b11d16e7fab85 | |
parent | ea40ab5b1f1d34cbaa07992a7add08ae7942d580 (diff) | |
download | patchwork-b1fe2318882ed5fc9fea4cd1b9ef9039ba7c2212.tar patchwork-b1fe2318882ed5fc9fea4cd1b9ef9039ba7c2212.tar.gz |
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 <stephen@that.guru>
-rw-r--r-- | docs/conf.py | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/docs/conf.py b/docs/conf.py index e0d8a2f..98c7aa3 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' |