fix(cli): install local deps in editable mode (#6294)

**Description** 

As part of this PR #6156, local deps are no longer installed in editable
mode. This change reverts that behaviour and ensures local packages are
installed in editable mode.

**Issue:** fixes #6288
This commit is contained in:
Asamu David
2025-10-17 01:42:11 +01:00
committed by GitHub
parent 6527df688c
commit 3f400b38d1
4 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -1 +1 @@
__version__ = "0.4.3"
__version__ = "0.4.4"
+1 -1
View File
@@ -1434,7 +1434,7 @@ ADD {relpath} /deps/{name}
echo "Installing $dep"; \
if [ -d "$dep" ]; then \
echo "Installing $dep"; \
(cd "$dep" && {global_reqs_pip_install} .); \
(cd "$dep" && {global_reqs_pip_install} -e .); \
fi; \
done""",
"# -- End of local dependencies install --",