From d1dd5eecd641210de59c8bee0a2e6e2babd21f78 Mon Sep 17 00:00:00 2001 From: Jack Thomasson <4302889+jkt628@users.noreply.github.com> Date: Fri, 10 Oct 2025 07:59:45 -0400 Subject: [PATCH] use a consistent python version for `uv` (#154022) --- Dockerfile.dev | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index 9c1b8299428..d81daaa47eb 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -36,7 +36,8 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv USER vscode -RUN uv python install 3.13.2 +ENV UV_PYTHON=3.13.2 +RUN uv python install ENV VIRTUAL_ENV="/home/vscode/.local/ha-venv" RUN uv venv $VIRTUAL_ENV