From cbe3ceb7b1d8e9675d3f2ef78f5e47902713c35f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 02:10:58 +0000 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20Python?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/markdown-code-runner.yml | 2 +- docker/tts.Dockerfile | 2 +- docker/whisper.Dockerfile | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/markdown-code-runner.yml b/.github/workflows/markdown-code-runner.yml index 91610102..c5317a08 100644 --- a/.github/workflows/markdown-code-runner.yml +++ b/.github/workflows/markdown-code-runner.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: "3.13.11" + python-version: "3.14.2" - name: Install uv uses: astral-sh/setup-uv@v7 diff --git a/docker/tts.Dockerfile b/docker/tts.Dockerfile index f5a2292d..f4d57013 100644 --- a/docker/tts.Dockerfile +++ b/docker/tts.Dockerfile @@ -86,7 +86,7 @@ ENTRYPOINT ["sh", "-c", "agent-cli server tts \ # ============================================================================= # CPU target: CPU-only with Piper TTS # ============================================================================= -FROM python:3.13-slim AS cpu +FROM python:3.14-slim AS cpu # Install system dependencies RUN apt-get update && \ diff --git a/docker/whisper.Dockerfile b/docker/whisper.Dockerfile index b44e5acf..b1c586fc 100644 --- a/docker/whisper.Dockerfile +++ b/docker/whisper.Dockerfile @@ -76,7 +76,7 @@ ENTRYPOINT ["sh", "-c", "agent-cli server whisper \ # ============================================================================= # CPU target: CPU-only with faster-whisper # ============================================================================= -FROM python:3.13-slim AS cpu +FROM python:3.14-slim AS cpu # Install system dependencies RUN apt-get update && \ diff --git a/pyproject.toml b/pyproject.toml index 51d83104..3c209548 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ dependencies = [ "setproctitle", ] # TODO: remove <3.14 constraint when onnxruntime supports 3.14 (https://github.com/microsoft/onnxruntime/issues/26309) -requires-python = ">=3.11,<3.14" +requires-python = ">=3.14,<3.15" [project.readme] file = "README.md"