From 07649e9c6b16b31d3354172f14414bc92977bc9e Mon Sep 17 00:00:00 2001 From: ciregenz Date: Mon, 23 Mar 2026 19:21:25 -0700 Subject: [PATCH] [eric] remove claude_agent_sdk check from build script --- scripts/build-python-env.sh | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/scripts/build-python-env.sh b/scripts/build-python-env.sh index af321c58..997d2e30 100755 --- a/scripts/build-python-env.sh +++ b/scripts/build-python-env.sh @@ -88,23 +88,9 @@ echo "Installing backend dependencies..." echo "Installing debugger module..." "$PYTHON_BIN" -m pip install -e "$PROJECT_ROOT/debugger" -# Verify claude-agent-sdk and its bundled binary -echo "Verifying claude-agent-sdk..." -"$PYTHON_BIN" -c "import claude_agent_sdk; print(f'claude-agent-sdk installed')" - -CLAUDE_BIN=$("$PYTHON_BIN" -c " -from pathlib import Path -import claude_agent_sdk -sdk_dir = Path(claude_agent_sdk.__file__).parent -bundled = sdk_dir / '_bundled' / 'claude' -print(bundled) -") -if [[ -f "$CLAUDE_BIN" ]]; then - echo "Claude binary found: $CLAUDE_BIN" - chmod +x "$CLAUDE_BIN" -else - echo "WARNING: Claude binary not found at $CLAUDE_BIN" -fi +# Verify core dependencies +echo "Verifying Python environment..." +"$PYTHON_BIN" -c "import anthropic; import openai; import httpx; print('Core dependencies OK')" # Clean up build artifacts to reduce size echo "Cleaning up..."