From 3ef66ca79ddc678d2215c6f6828246363bab22cd Mon Sep 17 00:00:00 2001 From: Devanshu Rajesh Chicholikar Date: Tue, 14 Apr 2026 21:35:50 -0400 Subject: [PATCH] fix(ci): add numpy to dev dependencies so RL tests run in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI installs with pip install -e '.[dev]' — numpy was only in [rl] extras so all test_rl/* tests failed with ModuleNotFoundError on every platform. Made-with: Cursor --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 243cc84..5440552 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ dev = [ "pytest>=8.0.0", "pytest-cov>=5.0.0", "ruff>=0.5.0", + "numpy>=1.24.0", ] enrich = [ # AI post-processing of interview answers -- requires ANTHROPIC_API_KEY