From c5d563e9b95bdf3df09bd196f095d6eeba592641 Mon Sep 17 00:00:00 2001 From: Benjamin Bossan Date: Thu, 31 Aug 2023 12:43:44 +0200 Subject: [PATCH] Attempt at fixing theme on RTD --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9e72ee127..98896370d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -126,7 +126,7 @@ def setup(app): # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] -if not on_rtd: # only import and set the theme if we're building docs locally +if True or not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]