Skip to content

Commit 7fc1faf

Browse files
fix ci
Signed-off-by: Keval Morabia <28916987+kevalmorabia97@users.noreply.github.com>
1 parent 715b2b1 commit 7fc1faf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def gpu(session):
122122
# Container: nvcr.io/nvidia/nemo:26.04 or later
123123
@nox.session(venv_backend="none")
124124
def gpu_megatron(session):
125-
# nemo:26.04 has transformers 5.x but tensorrt_llm 1.2.0 which does not support it causing import errors
126-
session.run("python", "-m", "pip", "uninstall", "-y", "tensorrt_llm")
125+
# nemo:26.04 has transformers 5.x but system-wide installed trtllm 1.2.0 which does not support it causing import errors
126+
session.run("pip", "uninstall", "-y", "tensorrt_llm")
127127
session.run("python", "-m", "pip", "install", "-e", ".[hf,dev-test]")
128128
session.run("python", "-m", "pytest", "tests/gpu_megatron", *_cov_args())
129129

0 commit comments

Comments
 (0)