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 .github/workflows/markdown-code-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/tts.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion docker/whisper.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading