Commit cc02e24
committed
Install palace-manager editable in the container
The Poetry to uv migration in #3221 switched the container install from
editable (Poetry's default) to non-editable (uv sync --no-editable).
That change broke palace.manager.scripts.startup's discovery of the
startup_tasks/ directory — the script resolves STARTUP_TASKS_DIR via
Path(__file__).parents[4], which assumes startup.py is at
${root}/src/palace/manager/scripts/startup.py (editable install).
Under --no-editable, startup.py lives inside site-packages and
parents[4] resolves to env/lib/python3.12/ instead of the project root,
so startup_tasks/ is never found.
Drop --no-editable to restore the working layout.1 parent 11171c1 commit cc02e24
1 file changed
Lines changed: 2 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
| 30 | + | |
| 31 | + | |
34 | 32 | | |
35 | 33 | | |
36 | 34 | | |
| |||
0 commit comments