fix: make uv-managed CI env compatible with platformio pip checks

This commit is contained in:
Jared Dohrman
2026-04-09 10:23:27 +10:00
vanhempi 1dfb5f4bed
commit 554ccf51df
2 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
@@ -23,7 +23,7 @@ runs:
shell: bash
run: |
uv sync --locked --no-group docs
uv venv --allow-existing --seed
uv pip install --python .venv/bin/python pip setuptools wheel
echo "$GITHUB_WORKSPACE/.venv/bin" >> "$GITHUB_PATH"
# Recommended EastMesh tag format:
+3 -3
Näytä tiedosto
@@ -9,15 +9,15 @@ require_uv() {
sync_python_tooling() {
uv sync --locked --no-group docs >/dev/null
uv venv --allow-existing --seed >/dev/null
uv pip install --python .venv/bin/python pip setuptools wheel >/dev/null
}
run_python() {
uv run --no-sync python "$@"
.venv/bin/python "$@"
}
run_pio() {
uv run --no-sync pio "$@"
.venv/bin/pio "$@"
}
global_usage() {