Skip to content

Commit 5fe0c6d

Browse files
authored
update uv to 0.11 (#4665)
1 parent 6667a21 commit 5fe0c6d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install uv
5555
uses: astral-sh/setup-uv@v5
5656
with:
57-
version: "0.10.x"
57+
version: "0.11.x"
5858
enable-cache: true
5959
cache-dependency-glob: "uv.lock"
6060
- name: Install dependencies

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install uv
5252
uses: astral-sh/setup-uv@v5
5353
with:
54-
version: "0.10.x"
54+
version: "0.11.x"
5555
enable-cache: true
5656
cache-dependency-glob: "uv.lock"
5757
- name: Install dependencies

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
3939
libpq-dev \
4040
&& rm -rf /var/lib/apt/lists/*
4141

42-
COPY --from=ghcr.io/astral-sh/uv:0.10 /uv /uvx /usr/local/bin/
42+
COPY --from=ghcr.io/astral-sh/uv:0.11 /uv /uvx /usr/local/bin/
4343
COPY pyproject.toml uv.lock .python-version ./
4444
ENV UV_PROJECT_ENVIRONMENT=/app/venv
4545
RUN uv sync --frozen --no-dev

screenshot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM python:3.12-slim-bookworm
55
ARG TZ=Etc/GMT
66
ARG DEBIAN_FRONTEND=noninteractive
77

8-
COPY --from=ghcr.io/astral-sh/uv:0.10 /uv /uvx /usr/local/bin/
8+
COPY --from=ghcr.io/astral-sh/uv:0.11 /uv /uvx /usr/local/bin/
99

1010
# Install curl (needed for Heroku CLI) and Heroku CLI in a single layer
1111
RUN apt-get update && \

0 commit comments

Comments
 (0)