mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
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. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
296 B
Docker
18 lines
296 B
Docker
FROM python:3.14 AS base
|
|
|
|
FROM base AS builder
|
|
|
|
WORKDIR /src
|
|
|
|
COPY requirements.txt /src/
|
|
|
|
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
|
|
|
|
FROM python:3.14-slim AS output
|
|
|
|
COPY --from=builder /runtime /usr/local
|
|
|
|
WORKDIR /app
|
|
COPY *.py .
|
|
|
|
CMD ["python", "run_stream.py"]
|