From 8aab7fdb21e86b87a3141951ce498246fd4aae73 Mon Sep 17 00:00:00 2001 From: Yineng Zhang Date: Mon, 14 Apr 2025 22:37:59 -0700 Subject: [PATCH] chore: upgrade sgl-kernel 0.0.9 (#5401) --- python/pyproject.toml | 2 +- scripts/ci_install_dependency.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 96803787d..aca8e2fb5 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -47,7 +47,7 @@ runtime_common = [ srt = [ "sglang[runtime_common]", - "sgl-kernel==0.0.8.post3", + "sgl-kernel==0.0.9", "flashinfer_python==0.2.3", "torch==2.5.1", "torchvision==0.20.1", diff --git a/scripts/ci_install_dependency.sh b/scripts/ci_install_dependency.sh index 80cda93ce..986b1d429 100755 --- a/scripts/ci_install_dependency.sh +++ b/scripts/ci_install_dependency.sh @@ -20,7 +20,7 @@ pip install --upgrade pip # Install flashinfer and sgl-kernel pip install flashinfer_python==0.2.3 --find-links ${FLASHINFER_REPO} --no-cache-dir -pip install sgl-kernel==0.0.8.post3 --no-cache-dir +pip install sgl-kernel==0.0.9 --no-cache-dir # Install the main package pip install -e "python[all]" --find-links ${FLASHINFER_REPO}