From 56e8bb49b88c84e38e96682d4eedfd0b401783a8 Mon Sep 17 00:00:00 2001 From: Baizhou Zhang Date: Mon, 10 Aug 2026 16:56:46 -0700 Subject: [PATCH] fix(ci): constrain NeMo Skills evaluator dependencies (#34322) --- python/sglang/test/accuracy_test_runner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/sglang/test/accuracy_test_runner.py b/python/sglang/test/accuracy_test_runner.py index 70cef37fb..45fc1a46b 100644 --- a/python/sglang/test/accuracy_test_runner.py +++ b/python/sglang/test/accuracy_test_runner.py @@ -212,6 +212,8 @@ def _get_nemo_venv() -> Tuple[str, dict]: "--python", f"{_nemo_venv_dir}/venv/bin/python", f"git+https://github.com/NVIDIA/NeMo-Skills.git@{nemo_skills_ref}", + "mcp<2", + "typer<0.27", ], capture_output=True, text=True,