From ad5827d33fcdb448b156edbd492c482df90c2930 Mon Sep 17 00:00:00 2001 From: Robert Resch Date: Tue, 18 Feb 2025 19:26:36 +0100 Subject: [PATCH] Bump uv to 0.6.1 (#5641) * Bump uv to 0.6.0 * Bump uv to 0.6.1 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6015aa4cf..d8e8432ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,15 +28,15 @@ RUN \ \ && curl -Lso /usr/bin/cosign "https://github.com/home-assistant/cosign/releases/download/${COSIGN_VERSION}/cosign_${BUILD_ARCH}" \ && chmod a+x /usr/bin/cosign \ - && pip3 install uv==0.2.21 + && pip3 install uv==0.6.1 # Install requirements COPY requirements.txt . RUN \ if [ "${BUILD_ARCH}" = "i386" ]; then \ - linux32 uv pip install --compile --no-build -r requirements.txt; \ + linux32 uv pip install --compile-bytecode --no-build -r requirements.txt; \ else \ - uv pip install --compile --no-build -r requirements.txt; \ + uv pip install --compile-bytecode --no-build -r requirements.txt; \ fi \ && rm -f requirements.txt