Skip to content

Commit

Permalink
Merge pull request #353 from FoamyGuy/fix_rtd_theme_patch
Browse files Browse the repository at this point in the history
adding rtd theme patch
  • Loading branch information
kattni authored Sep 18, 2023
2 parents 2904a54 + 92f2b18 commit bfeb949
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions patches/11SEP2023_fix_rtd_theme.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Subject: [PATCH] fix rtd theme
---
Index: docs/conf.py
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/docs/conf.py b/docs/conf.py
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -101,19 +101,10 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
-on_rtd = os.environ.get("READTHEDOCS", None) == "True"
-
-if not on_rtd: # only import and set the theme if we're building docs locally
- try:
- import sphinx_rtd_theme
+import sphinx_rtd_theme

- html_theme = "sphinx_rtd_theme"
- html_theme_path = [sphinx_rtd_theme.get_html_theme_path(), "."]
- except:
- html_theme = "default"
- html_theme_path = ["."]
-else:
- html_theme_path = ["."]
+html_theme = "sphinx_rtd_theme"
+html_theme_path = [sphinx_rtd_theme.get_html_theme_path(), "."]

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,

0 comments on commit bfeb949

Please sign in to comment.