From d344f421d6234df0eb44c3362d36004d6f537d84 Mon Sep 17 00:00:00 2001 From: David Bold Date: Thu, 14 Mar 2024 13:57:27 +0100 Subject: [PATCH] Revert "Docs: Don't include boutdata/boututils in docs" This reverts commit e6bc5c5d0e85b5e895b124b066bbf62aed6c45b1. The commit tried to make boutuitls and boutdata non-importable for the documentation tool. If those modules should be remove from the documentation, this can be achieved by removing them from manual/sphinx/_apidoc/. This should not break the documentation fro boutpp or boutconfig. --- manual/sphinx/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/manual/sphinx/conf.py b/manual/sphinx/conf.py index 67507633b6..62f7b1c06f 100755 --- a/manual/sphinx/conf.py +++ b/manual/sphinx/conf.py @@ -31,8 +31,7 @@ import subprocess import sys -sys.path.append("../../tools/pylib/boutpp") -sys.path.append("../../tools/pylib/boutconfig") +sys.path.append("../../tools/pylib") # Are we running on readthedocs? on_readthedocs = os.environ.get("READTHEDOCS") == "True"