From 01dc42acc6c375a6e9d79b9cced6a74647059cb3 Mon Sep 17 00:00:00 2001 From: sglang-bot Date: Wed, 8 Apr 2026 20:12:06 +0000 Subject: [PATCH] chore: bump flashinfer version to 0.6.7.post3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the flashinfer version across all relevant files: - docker/Dockerfile - python/pyproject.toml - python/sglang/srt/entrypoints/engine.py - python/sglang/srt/utils/common.py 🤖 Generated with GitHub Actions --- docker/Dockerfile | 2 +- python/pyproject.toml | 4 ++-- python/sglang/srt/entrypoints/engine.py | 2 +- python/sglang/srt/utils/common.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 57842c53564b..4e87931cc14a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -19,7 +19,7 @@ ARG PIP_DEFAULT_INDEX ARG UBUNTU_MIRROR ARG GITHUB_ARTIFACTORY=github.com ARG INSTALL_FLASHINFER_JIT_CACHE=0 -ARG FLASHINFER_VERSION=0.6.7.post2 +ARG FLASHINFER_VERSION=0.6.7.post3 ARG MOONCAKE_VERSION=0.3.9 #if need other arg please add in MOONCAKE_COMPILE_ARG ARG MOONCAKE_COMPILE_ARG="-DUSE_HTTP=ON -DUSE_MNNVL=ON -DUSE_CUDA=ON -DWITH_EP=ON" diff --git a/python/pyproject.toml b/python/pyproject.toml index 9fab1de2e1e2..538ad4908d7f 100755 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -27,8 +27,8 @@ dependencies = [ "datasets", "einops", "fastapi", - "flashinfer_python==0.6.7.post2", # keep it aligned with jit-cache version in Dockerfile - "flashinfer_cubin==0.6.7.post2", + "flashinfer_python==0.6.7.post3", # keep it aligned with jit-cache version in Dockerfile + "flashinfer_cubin==0.6.7.post3", "gguf", "interegular", "llguidance>=0.7.11,<0.8.0", diff --git a/python/sglang/srt/entrypoints/engine.py b/python/sglang/srt/entrypoints/engine.py index aca1adc26f93..d864e4abaa5b 100644 --- a/python/sglang/srt/entrypoints/engine.py +++ b/python/sglang/srt/entrypoints/engine.py @@ -1128,7 +1128,7 @@ def _set_envs_and_config(server_args: ServerArgs): if server_args.attention_backend == "flashinfer": assert_pkg_version( "flashinfer_python", - "0.6.7.post2", + "0.6.7.post3", "Please uninstall the old version and " "reinstall the latest version by following the instructions " "at https://docs.flashinfer.ai/installation.html.", diff --git a/python/sglang/srt/utils/common.py b/python/sglang/srt/utils/common.py index f65f201adfaa..b0be70d75193 100644 --- a/python/sglang/srt/utils/common.py +++ b/python/sglang/srt/utils/common.py @@ -1023,7 +1023,7 @@ def check_pkg_version_at_least(pkg: str, min_version: str) -> bool: Args: pkg: Package name (distribution name, e.g., "flashinfer-python") - min_version: Minimum version required (e.g., "0.6.7.post2") + min_version: Minimum version required (e.g., "0.6.7.post3") Returns: True if package is installed and version >= min_version, False otherwise