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
This commit is contained in:
parent
b7abf8565a
commit
3f31cbf505
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue