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

このコミットが含まれているのは:
Jared Dohrman
2026-04-09 10:23:27 +10:00
コミット 554ccf51df
2個のファイルの変更4行の追加4行の削除
+1 -1
ファイルの表示
@@ -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
ファイルの表示
@@ -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() {