fix: seed pip in uv environments for platformio CI

This commit is contained in:
Jared Dohrman
2026-04-09 10:28:24 +10:00
parent 554ccf51df
commit 2ab5f5128f
2 changed files with 4 additions and 4 deletions
@@ -23,7 +23,7 @@ runs:
shell: bash
run: |
uv sync --locked --no-group docs
uv pip install --python .venv/bin/python pip setuptools wheel
uv venv --allow-existing --seed
echo "$GITHUB_WORKSPACE/.venv/bin" >> "$GITHUB_PATH"
# Recommended EastMesh tag format:
+3 -3
View File
@@ -9,15 +9,15 @@ require_uv() {
sync_python_tooling() {
uv sync --locked --no-group docs >/dev/null
uv pip install --python .venv/bin/python pip setuptools wheel >/dev/null
uv venv --allow-existing --seed >/dev/null
}
run_python() {
.venv/bin/python "$@"
uv run --no-sync python "$@"
}
run_pio() {
.venv/bin/pio "$@"
uv run --no-sync pio "$@"
}
global_usage() {