From 4ae79700d48c1fb307a7437dc256dd099a080a4a Mon Sep 17 00:00:00 2001 From: Paulo Cheque Date: Tue, 5 Sep 2023 17:29:13 -0300 Subject: [PATCH] Fixed Sphinx doc theme (#160) * Fixed Sphinx doc theme * Forcing RTD theme --- docs/source/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index c6bb3f9..e1a5533 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -102,8 +102,7 @@ html_theme = 'default' on_rtd = os.environ.get('READTHEDOCS', None) == 'True' - -if not on_rtd: # only import and set the theme if we're building docs locally +if (not on_rtd) or True: # 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()]