diff options
-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' |