From fee94450677e685cb6443b0e971d9d1a3ceda9da Mon Sep 17 00:00:00 2001 From: Matt Aitchison Date: Tue, 3 Feb 2026 10:55:01 -0600 Subject: [PATCH] fix: add .python-version to fix Dependabot uv updates (#4352) Dependabot's uv updater defaults to Python 3.14.2, which is incompatible with the project's requires-python constraint (>=3.10, <3.14). Adding .python-version pins the Python version to 3.13 for dependency updates. Co-authored-by: Greyson LaLonde --- .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 000000000..24ee5b1be --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13