From 105952979cdc54a653ee0993db1c484800caf972 Mon Sep 17 00:00:00 2001 From: Joe Cardoso Date: Sat, 21 Mar 2026 12:33:42 -0300 Subject: [PATCH] fix: add anthropic to dev dependencies for LLM smoke tests tests-integration/test_skill_llm.py imports anthropic but it was missing from the dev dependency group, causing ModuleNotFoundError. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 15dc3b8..88100c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,6 +63,7 @@ dev = [ "pytest-cov>=6.0.0", "ruff>=0.13.0", "ty>=0.0.20", + "anthropic>=0.40.0", ] [project.urls]