chore: upgrade torch 2.8.0 (#8836)

This commit is contained in:
Yineng Zhang
2025-08-05 17:32:01 -07:00
committed by GitHub
parent c1d2061f97
commit 3ae8e3ea8f
4 changed files with 11 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ name = "sglang"
version = "0.4.10.post2"
description = "SGLang is yet another fast serving framework for large language models and vision language models."
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
@@ -54,10 +54,10 @@ runtime_common = [
srt = [
"sglang[runtime_common]",
"sgl-kernel==0.2.8",
"torch==2.7.1",
"torchaudio==2.7.1",
"torchvision==0.22.1",
"sgl-kernel==0.3.2",
"torch==2.8.0",
"torchaudio==2.8.0",
"torchvision",
"cuda-python",
"einops",
"flashinfer_python==0.2.10",
@@ -66,9 +66,9 @@ srt = [
blackwell = [
"sglang[runtime_common]",
"sgl-kernel",
"torch==2.7.1",
"torchaudio==2.7.1",
"torchvision==0.22.1",
"torch==2.8.0",
"torchaudio==2.8.0",
"torchvision",
"cuda-python",
"einops",
"flashinfer_python==0.2.10",

View File

@@ -649,7 +649,7 @@ def _set_envs_and_config(server_args: ServerArgs):
if _is_cuda:
assert_pkg_version(
"sgl-kernel",
"0.2.8",
"0.3.2",
"Please reinstall the latest version with `pip install sgl-kernel --force-reinstall`",
)