Skip to content
Open
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 docker/tts.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ RUN uv sync --frozen --no-dev --no-editable --extra server --extra piper --extra
# =============================================================================
# CUDA target: GPU-accelerated with Kokoro TTS
# =============================================================================
FROM nvcr.io/nvidia/cuda:12.9.1-cudnn-runtime-ubuntu24.04 AS cuda
FROM nvcr.io/nvidia/cuda:12.9.2-cudnn-runtime-ubuntu24.04 AS cuda

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

Expand Down
2 changes: 1 addition & 1 deletion docker/whisper.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN uv sync --frozen --no-dev --no-editable --extra server --extra faster-whispe
# =============================================================================
# CUDA target: GPU-accelerated with faster-whisper
# =============================================================================
FROM nvcr.io/nvidia/cuda:12.9.1-cudnn-runtime-ubuntu24.04 AS cuda
FROM nvcr.io/nvidia/cuda:12.9.2-cudnn-runtime-ubuntu24.04 AS cuda

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

Expand Down
7 changes: 5 additions & 2 deletions tests/test_macos_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,8 +805,11 @@ def test_macos_build_script_creates_drag_install_dmg() -> None:
assert "-format UDRW" in script
assert "hdiutil attach" in script
assert "-mountpoint" not in script
assert 'volume_path=$(printf' in script
assert 'set background picture of theViewOptions to file ".background:dmg-background.png"' in script
assert "volume_path=$(printf" in script
assert (
'set background picture of theViewOptions to file ".background:dmg-background.png"'
in script
)
assert 'set position of item "AgentCLI.app" of container window to {150, 180}' in script
assert 'set position of item "Applications" of container window to {450, 180}' in script
assert 'if ! set_dmg_finder_layout "$volume_path"; then' in script
Expand Down
Loading