From f2c67c95d0fca37d652a4d05bb4ae12167be1c86 Mon Sep 17 00:00:00 2001 From: Brian Pugh Date: Mon, 24 Apr 2023 08:45:38 -0700 Subject: [PATCH] Add the current directory to the micropypath --- belay/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/belay/cli/main.py b/belay/cli/main.py index c672291..28dd98b 100644 --- a/belay/cli/main.py +++ b/belay/cli/main.py @@ -45,7 +45,7 @@ def run_exec(command: List[str]): # This flattens all dependencies to a single folder and fetches fresh # copies of dependencies in ``develop`` mode. with TemporaryDirectory() as tmp_dir: - virtual_env["MICROPYPATH"] = tmp_dir + virtual_env["MICROPYPATH"] = f".:{tmp_dir}" for group in groups: group.copy_to(tmp_dir)