From fd6add46f93e1071ebf42c9a8c929c65c9114b8c Mon Sep 17 00:00:00 2001 From: Evgenii Alekseev Date: Fri, 17 Jul 2026 14:11:07 +0300 Subject: [PATCH] build: fix import paths for rtd --- .readthedocs.yml | 3 +++ docs/conf.py | 8 -------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index e4ce603a..20f9d342 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -10,6 +10,9 @@ build: python: install: - requirements: docs/requirements.txt + - path: ahriman-core + - path: ahriman-triggers + - path: ahriman-web formats: - pdf diff --git a/docs/conf.py b/docs/conf.py index 79d1ad16..489883e3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,14 +11,6 @@ # documentation root, use os.path.abspath to make it absolute, like shown here. # import datetime -import sys - -from pathlib import Path - - -# support package imports -basedir = Path(__file__).resolve().parent.parent / "src" -sys.path.insert(0, str(basedir)) # -- Project information -----------------------------------------------------