Update to Python 3.14

Update .python-version, pyproject.toml, and Dockerfile to use Python 3.14.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-14 17:00:39 -05:00
parent d2fc2748c7
commit dfcb2640bb
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1 +1 @@
3.13
3.14
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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",