diff --git a/docker/tts.Dockerfile b/docker/tts.Dockerfile index c2040e45f..9ae5ecccd 100644 --- a/docker/tts.Dockerfile +++ b/docker/tts.Dockerfile @@ -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/ diff --git a/docker/whisper.Dockerfile b/docker/whisper.Dockerfile index a01e0caf6..5986d5fa2 100644 --- a/docker/whisper.Dockerfile +++ b/docker/whisper.Dockerfile @@ -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/ diff --git a/tests/test_macos_app.py b/tests/test_macos_app.py index 19d30756c..ae67e0ced 100644 --- a/tests/test_macos_app.py +++ b/tests/test_macos_app.py @@ -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