From e88315dfb9003942ae30f3cff4263223dc835e70 Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Fri, 24 Jul 2026 17:39:20 -0400 Subject: [PATCH] build: pin local uv Python to 3.13 requires-python is ">=3.13", so a fresh worktree's "uv sync --dev" picks the newest interpreter on the box - currently CPython 3.15.0a7 - and the build fails because pyo3 0.26 (via jiter/fastuuid/pydantic-core) does not support 3.15 yet: error: failed to run custom build command for `pyo3-ffi v0.26.0` CI already pins 3.13 via setup-uv, so this only bit local worktrees. Pinning matches CI and leaves requires-python alone. Co-Authored-By: Claude --- .python-version | 1 + 1 file changed, 1 insertion(+) create mode 100644 .python-version diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13