From 8f1ab3b022c5a133ee6a564912cf05c955b059d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Thu, 10 Dec 2020 12:08:03 +0100 Subject: [PATCH] FIX: import name --- src/doc/conf.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/doc/conf.py b/src/doc/conf.py index c935d2dd..94dbaf66 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -19,6 +19,8 @@ # -- Project information ----------------------------------------------------- +import sphinx_rtd_theme + project = 'caosdb-server' copyright = '2020, IndiScale GmbH' author = 'Daniel Hornung' @@ -29,9 +31,6 @@ version = '0.X.Y' release = '0.x.y-beta-rc2' -import sphinx-rtd-theme - - # -- General configuration --------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. @@ -47,7 +46,7 @@ extensions = [ "sphinx.ext.autodoc", 'autoapi.extension', "recommonmark", # For markdown files. - "sphinx-rtd-theme", + "sphinx_rtd_theme", # 'sphinx.ext.intersphinx', # 'sphinx.ext.napoleon', # For Google style docstrings ] @@ -85,7 +84,7 @@ pygments_style = None # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = "sphinx-rtd-theme" +html_theme = "sphinx_rtd_theme" # 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 -- GitLab