Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion maestro_worker_python/scaffold/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ARG BASE_IMAGE=python:3.12-slim-trixie
FROM ${BASE_IMAGE}

COPY --from=ghcr.io/astral-sh/uv:0.11.25 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.12.1 /uv /uvx /bin/

ENV UV_LINK_MODE=copy

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dev = [
]

[build-system]
requires = ["uv_build>=0.11.25,<0.12"]
requires = ["uv_build>=0.11.25,<0.13"]
build-backend = "uv_build"

[tool.ruff]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_init_creates_complete_worker_scaffold(tmp_path, monkeypatch):
dockerfile = (target / "Dockerfile").read_text()
assert "ARG BASE_IMAGE=python:3.12-slim-trixie" in dockerfile
assert "FROM ${BASE_IMAGE}" in dockerfile
assert "COPY --from=ghcr.io/astral-sh/uv:0.11.25 /uv /uvx /bin/" in dockerfile
assert "COPY --from=ghcr.io/astral-sh/uv:0.12.1 /uv /uvx /bin/" in dockerfile
assert "UV_LINK_MODE=copy" in dockerfile
assert "COPY pyproject.toml uv.lock ./" in dockerfile
assert "--mount=type=cache,target=/root/.cache/uv" in dockerfile
Expand Down