From 7cf507e3c2e13d497a90c801eb19e623cddfadba Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Wed, 7 Jan 2026 13:17:07 -0600 Subject: [PATCH] Pin numpy<2 for older CPU compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NumPy 2.x requires X86_V2 instruction set (SSE4.2/AVX) which the production server CPU doesn't support. Pin to numpy 1.x to avoid RuntimeError on startup. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index c8fb835..049af72 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,7 @@ fastapi uvicorn peewee python-multipart +numpy<2 pandas pygsheets pybaseball