Skip to content

Commit 12bda4b

Browse files
⬆️ Update Python
1 parent 6da8b46 commit 12bda4b

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/markdown-code-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v6
2121
with:
22-
python-version: "3.13.11"
22+
python-version: "3.14.3"
2323

2424
- name: Install uv
2525
uses: astral-sh/setup-uv@v7

docker/memory-proxy.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# =============================================================================
3333
# Builder stage - install dependencies and project
3434
# =============================================================================
35-
FROM python:3.13-slim AS builder
35+
FROM python:3.14-slim AS builder
3636

3737
RUN apt-get update && \
3838
apt-get install -y --no-install-recommends git build-essential && \
@@ -51,7 +51,7 @@ RUN uv sync --frozen --no-dev --no-editable --extra memory
5151
# =============================================================================
5252
# Runtime stage - minimal image using Python slim directly
5353
# =============================================================================
54-
FROM python:3.13-slim
54+
FROM python:3.14-slim
5555

5656
# Install runtime dependencies:
5757
# - libgomp1: Required by onnxruntime for parallel processing

docker/rag-proxy.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# =============================================================================
3030
# Builder stage - install dependencies and project
3131
# =============================================================================
32-
FROM python:3.13-slim AS builder
32+
FROM python:3.14-slim AS builder
3333

3434
RUN apt-get update && \
3535
apt-get install -y --no-install-recommends git build-essential && \
@@ -48,7 +48,7 @@ RUN uv sync --frozen --no-dev --no-editable --extra rag
4848
# =============================================================================
4949
# Runtime stage - minimal image using Python slim directly
5050
# =============================================================================
51-
FROM python:3.13-slim
51+
FROM python:3.14-slim
5252

5353
# Install runtime dependencies:
5454
# - libgomp1: Required by onnxruntime for parallel processing

docker/transcribe-proxy.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# =============================================================================
2525
# Builder stage - install dependencies and project
2626
# =============================================================================
27-
FROM python:3.13-alpine AS builder
27+
FROM python:3.14-alpine AS builder
2828

2929
RUN apk add --no-cache git
3030

@@ -41,7 +41,7 @@ RUN uv sync --frozen --no-dev --no-editable --extra server --extra wyoming --ext
4141
# =============================================================================
4242
# Runtime stage - minimal Alpine image
4343
# =============================================================================
44-
FROM python:3.13-alpine
44+
FROM python:3.14-alpine
4545

4646
RUN apk add --no-cache ffmpeg
4747

docker/tts.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# =============================================================================
1313
# Builder stage for CUDA - Kokoro TTS (requires build tools)
1414
# =============================================================================
15-
FROM python:3.13-slim AS builder-cuda
15+
FROM python:3.14-slim AS builder-cuda
1616

1717
RUN apt-get update && \
1818
apt-get install -y --no-install-recommends build-essential git && \
@@ -32,7 +32,7 @@ RUN uv sync --frozen --no-dev --no-editable --extra server --extra kokoro --extr
3232
# =============================================================================
3333
# Builder stage for CPU - Piper TTS
3434
# =============================================================================
35-
FROM python:3.13-slim AS builder-cpu
35+
FROM python:3.14-slim AS builder-cpu
3636

3737
RUN apt-get update && \
3838
apt-get install -y --no-install-recommends git && \
@@ -108,7 +108,7 @@ ENTRYPOINT ["sh", "-c", "agent-cli server tts \
108108
# =============================================================================
109109
# CPU target: CPU-only with Piper TTS
110110
# =============================================================================
111-
FROM python:3.13-slim AS cpu
111+
FROM python:3.14-slim AS cpu
112112

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

docker/whisper.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# =============================================================================
1313
# Builder stage - install dependencies and project
1414
# =============================================================================
15-
FROM python:3.13-slim AS builder
15+
FROM python:3.14-slim AS builder
1616

1717
RUN apt-get update && \
1818
apt-get install -y --no-install-recommends git && \
@@ -83,7 +83,7 @@ ENTRYPOINT ["sh", "-c", "agent-cli server whisper \
8383
# =============================================================================
8484
# CPU target: CPU-only with faster-whisper
8585
# =============================================================================
86-
FROM python:3.13-slim AS cpu
86+
FROM python:3.14-slim AS cpu
8787

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies = [
2020
"setproctitle",
2121
]
2222
# TODO: remove <3.14 constraint when onnxruntime supports 3.14 (https://github.com/microsoft/onnxruntime/issues/26309)
23-
requires-python = ">=3.11,<3.14"
23+
requires-python = ">=3.14,<3.15"
2424

2525
[project.readme]
2626
file = "README.md"

0 commit comments

Comments
 (0)