Revert to Python 3.13

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-14 19:24:08 -05:00
parent dfcb2640bb
commit c753830b8c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1 +1 @@
3.14
3.13
+2 -2
View File
@@ -1,4 +1,4 @@
FROM python:3.14 AS builder
FROM python:3.13 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.14-slim
FROM python:3.13-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.14"
requires-python = ">=3.13"
dependencies = [
"biblepy>=0.1.3",
"fastapi[standard]>=0.115.12",