From 5934bde99e0e74c9492acc3807ae1745e6ba5d8a Mon Sep 17 00:00:00 2001 From: whitews Date: Fri, 29 Mar 2024 11:37:44 -0400 Subject: [PATCH] fix path to source for building docs --- docs/conf.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 289d839..dfced83 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,9 +10,9 @@ on_rtd = os.environ.get('READTHEDOCS') == 'True' if on_rtd: - sys.path.insert(0, os.path.abspath('..')) + sys.path.insert(0, os.path.abspath('../src')) else: - sys.path.insert(0, os.path.abspath('..')) + sys.path.insert(0, os.path.abspath('../src')) class Mock(MagicMock): @@ -71,10 +71,10 @@ def __getattr__(cls, name): html_theme = 'sphinx_rtd_theme' html_theme_options = { - # 'logo': 'flowutils.png', - 'github_user': 'whitews', - 'github_repo': 'flowio', - 'github_banner': True + # 'logo': 'logo.png', + # 'github_user': 'whitews', + # 'github_repo': 'flowio', + # 'github_banner': True } # Add any paths that contain custom static files (such as style sheets) here,