From 5d859891a6a0515890090e4aa89a95e280052a8e Mon Sep 17 00:00:00 2001 From: Peet Denny Date: Thu, 21 May 2026 15:06:46 +0100 Subject: [PATCH] fix: bump pinned deps to versions with macOS ARM wheels tiktoken, pillow, pandas were pinned to versions without pre-built wheels for macOS ARM64, causing source builds to fail. Bumped to nearest patch versions with wheels available. --- backend/pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 233ef237..146951d4 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -53,3 +53,11 @@ dev = [ [tool.hatch.build.targets.wheel] packages = ["app"] + +[tool.uv] +override-dependencies = [ + "tiktoken==0.8.0", + "pillow>=10.4.0", + "pandas>=2.2.3" + +]