From a07b5da74b325ee2344289ec6a26e069aee0e403 Mon Sep 17 00:00:00 2001 From: Sasha Abramowitz Date: Thu, 21 Nov 2024 09:38:18 +0200 Subject: [PATCH] fix: integration test yaml and bump uv version --- .github/workflows/ci.yaml | 2 +- .github/workflows/integration_tests.yaml | 4 ++-- Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d730ba077..f2c74cc7e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v3 with: - version: "0.4.26" + version: "0.5.4" enable-cache: true cache-dependency-glob: "requirements/requirements**.txt" # invalidate cache when requirements file changes diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 09a55c7ec..492593a31 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -1,4 +1,4 @@ -name: Integration Tests: 🧪 +name: Integration Tests 🧪 on: push: @@ -18,7 +18,7 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v3 with: - version: "0.4.26" + version: "0.5.4" enable-cache: true cache-dependency-glob: "requirements/requirements**.txt" # invalidate cache when requirements file changes diff --git a/Dockerfile b/Dockerfile index e7790d345..388571e24 100755 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y git build-essential pkg-config libhdf5- # Add uv and use the system python (no need to make venv) USER root -COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv +COPY --from=ghcr.io/astral-sh/uv:0.5.4 /uv /bin/uv ENV UV_SYSTEM_PYTHON=1 WORKDIR /home/app/mava