From 3f31cbf505c342cf9f28f09f30741172e7af033f Mon Sep 17 00:00:00 2001 From: Andrew Barnes Date: Sat, 21 Mar 2026 15:23:38 -0400 Subject: [PATCH] fix: allow claude-agent-sdk installation on Linux/Docker (#644) Remove the sys_platform == 'darwin' constraint that prevented claude-agent-sdk from installing on Linux, breaking the claude-code provider in Docker containers. Fixes #640 --- hindsight-api-slim/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hindsight-api-slim/pyproject.toml b/hindsight-api-slim/pyproject.toml index 07979555..ea6251a0 100644 --- a/hindsight-api-slim/pyproject.toml +++ b/hindsight-api-slim/pyproject.toml @@ -58,7 +58,7 @@ dependencies = [ "orjson>=3.11.6", # Unbounded recursion DoS fix "tornado>=6.5.5", # DoS multipart/incomplete cookie validation fix "aiohttp>=3.13.3", # Multiple DoS vulnerabilities - "claude-agent-sdk>=0.1.27; sys_platform == 'darwin'", + "claude-agent-sdk>=0.1.27", ] [project.optional-dependencies]