1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Sat, 24 Jul 2021 23:19:33 +0200
Subject: Don't try to use sphinx_graphene_theme
We don't have such an modul currently in Debian.
Forwarded: not-needed
---
docs/conf.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 873531a..f8314a5 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,7 +1,7 @@
import os
import sys
-import sphinx_graphene_theme
+#import sphinx_graphene_theme
on_rtd = os.environ.get("READTHEDOCS", None) == "True"
@@ -138,9 +138,9 @@ todo_include_todos = True
# if on_rtd:
# html_theme = 'sphinx_rtd_theme'
-html_theme = "sphinx_graphene_theme"
+#html_theme = "sphinx_graphene_theme"
-html_theme_path = [sphinx_graphene_theme.get_html_theme_path()]
+#html_theme_path = [sphinx_graphene_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
|