diff --git a/src/build.ts b/src/build.ts index c61ca05..232ddf6 100644 --- a/src/build.ts +++ b/src/build.ts @@ -417,16 +417,11 @@ async function resolveBuildEnvironmentAssessment(cwd: string): Promise 0) { - requiredTools.add("uv"); evidence.push(`Detected ${pyprojectDirs.length} uv-managed Python workspace${pyprojectDirs.length > 1 ? "s" : ""}.`); for (const dir of pyprojectDirs) { if (!(await pathExists(path.join(dir, ".venv")))) { - bootstrapActions.push({ - label: `bootstrap uv environment (${path.relative(cwd, dir) || "."})`, - cwd: dir, - command: "uv sync --frozen", - rationale: "The Python workspace uses uv and does not have a local environment yet." - }); + notes.push( + `Skipped automatic uv bootstrap for ${path.relative(cwd, dir) || "."} because package-manager installs are not executed outside the Codex sandbox.` + ); } } }