From c1afb68d834dba25d4c729a8941a54b127cdb38b Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 27 Apr 2022 10:37:58 +0100 Subject: [PATCH] docs: Add root directory to PATH for docs build Signed-off-by: Stephen Finucane --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index dd75567..81109a9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,6 +5,7 @@ import os import sys +sys.path.insert(0, os.path.abspath('..')) sys.path.insert(0, os.path.abspath('../examples')) # -- General configuration ------------------------------------------------