Upgrade CI, Docker, and demos to Python 3.14 (#759)

Update all GitHub Actions workflows and Dockerfiles to use Python 3.14
as the default version. Remove the upper bound on requires-python in
model_choice_with_test_harness to allow 3.14+. The CLI's
requires-python stays at >=3.10 for broad compatibility.
This commit is contained in:
Adil Hafeez 2026-02-15 10:22:33 -08:00 committed by GitHub
parent 9c4b2fc570
commit c3591bcbf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 176 additions and 22 deletions

View file

@ -1,4 +1,4 @@
FROM python:3.12 AS base
FROM python:3.14 AS base
FROM base AS builder
@ -8,7 +8,7 @@ COPY requirements.txt /src/
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
FROM python:3.12-slim AS output
FROM python:3.14-slim AS output
COPY --from=builder /runtime /usr/local