From 5b1f1a53a599fe5c99ce3e77e4f9c8f3c2ca0973 Mon Sep 17 00:00:00 2001 From: MartinHua Date: Mon, 15 Jun 2026 20:12:37 -0700 Subject: [PATCH] chore: bump apache-tvm-ffi 0.1.11 / tilelang 0.1.11 / sgl-deep-gemm 0.1.4 Align SGLang's deps onto the apache-tvm-ffi 0.1.11 stack: - apache-tvm-ffi 0.1.9 -> 0.1.11 (tilelang 0.1.11 needs >=0.1.10; pin 0.1.11, since 0.1.12 breaks import, tile-ai/tilelang#2367) - tilelang 0.1.8 -> 0.1.11 - sgl-deep-gemm 0.1.3 -> 0.1.4 (python/pyproject.toml + docker/Dockerfile SGL_DEEP_GEMM_VERSION); sgl-deep-gemm 0.1.4 requires apache-tvm-ffi==0.1.11 This also fixes the current main inconsistency: sgl-deep-gemm (which requires apache-tvm-ffi==0.1.11) was pinned alongside apache-tvm-ffi==0.1.9. Co-Authored-By: Claude Opus 4.8 (1M context) --- docker/Dockerfile | 2 +- python/pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7f7b7ac84ac4..c73c47f183cf 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,7 +12,7 @@ ARG DEEPEP_COMMIT=9af0e0d0e74f3577af1979c9b9e1ac2cad0104ee ARG BUILD_AND_DOWNLOAD_PARALLEL=8 ARG SGL_KERNEL_VERSION=0.4.4 ARG SGL_VERSION -ARG SGL_DEEP_GEMM_VERSION=0.1.3 +ARG SGL_DEEP_GEMM_VERSION=0.1.4 ARG USE_LATEST_SGLANG=0 ARG GDRCOPY_VERSION=2.5.1 ARG PIP_DEFAULT_INDEX diff --git a/python/pyproject.toml b/python/pyproject.toml index 113e0ed1aebf..5a33232a955a 100755 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ dependencies = [ "aiohttp", "anthropic>=0.20.0", - "apache-tvm-ffi==0.1.9", + "apache-tvm-ffi==0.1.11", # tilelang 0.1.11 needs >=0.1.10; pin 0.1.11 (0.1.12 breaks import, tile-ai/tilelang#2367) "av ; sys_platform == 'linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64' or platform_machine == 'armv7l')", "blobfile==3.0.0", "build", @@ -65,12 +65,12 @@ dependencies = [ "scipy", "sentencepiece", "setproctitle", - "sgl-deep-gemm==0.1.3", + "sgl-deep-gemm==0.1.4", "sglang-kernel==0.4.4", "smg-grpc-servicer>=0.5.0", "soundfile==0.13.1", "tiktoken", - "tilelang==0.1.8", + "tilelang==0.1.11", "timm==1.0.16", "tokenspeed_mla==0.1.7", "torch==2.11.0",