From 28dab8512cf95d28642dad826f333d6d91975377 Mon Sep 17 00:00:00 2001 From: CPD Date: Mon, 10 Mar 2025 14:07:05 +0100 Subject: [PATCH] Change sys path --- cpdctrl_gui/main.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cpdctrl_gui/main.py b/cpdctrl_gui/main.py index bc6e571..e0af061 100644 --- a/cpdctrl_gui/main.py +++ b/cpdctrl_gui/main.py @@ -2,11 +2,13 @@ import sys if __name__ == "__main__": if __package__ is None: # make relative imports work as described here: https://peps.python.org/pep-0366/#proposed-change - __package__ = "cpdctrl" + __package__ = "cpdctrl_gui" from os import path filepath = path.realpath(path.abspath(__file__)) - pdir = path.dirname(path.dirname(filepath)) - sys.path.insert(0, pdir) + # Make sure both projects are loaded from the source tree instead of installed packages + # parent dir of both projects + pdir = path.dirname(path.dirname(path.dirname(filepath))) + sys.path.insert(0, path.join(pdir, "cpdctrl-gui")) sys.path.insert(0, path.join(pdir, "cpdctrl")) print(sys.path) from cpdctrl_gui import init