From 2b6a551bfb392f8c8d25d46bcb910f2c2b70e15b Mon Sep 17 00:00:00 2001 From: Ivan Schaller Date: Mon, 16 Jun 2025 18:31:23 +0200 Subject: [PATCH] debug sphinx build Signed-off-by: Ivan Schaller --- docs/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index c5a6c51..3f51189 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,9 @@ import sys from pathlib import Path -sys.path.insert(0, str(Path("..").resolve())) +sys.path.insert(0, str(Path(__file__).parent.parent.resolve())) + +print(f"SYS.PATH={sys.path}") from octodns.__init__ import __version__