diff --git a/.python-version b/.python-version index 24ee5b1..6324d40 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.13 +3.14 diff --git a/Dockerfile b/Dockerfile index 2ab3b01..327c0cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13 AS builder +FROM python:3.14 AS builder # Install uv COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv @@ -16,7 +16,7 @@ COPY pyproject.toml uv.lock ./ # Install dependencies into the system RUN uv sync --frozen --no-install-project --no-dev -FROM python:3.13-slim +FROM python:3.14-slim # Install uv COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv diff --git a/pyproject.toml b/pyproject.toml index 8c9d7d2..f30410b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "kjvstudy-org" version = "0.1.0" description = "Study the King James Bible with AI-powered commentary and insights" readme = "README.md" -requires-python = ">=3.13" +requires-python = ">=3.14" dependencies = [ "biblepy>=0.1.3", "fastapi[standard]>=0.115.12",