Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
3ae8e3ea
Unverified
Commit
3ae8e3ea
authored
Aug 05, 2025
by
Yineng Zhang
Committed by
GitHub
Aug 05, 2025
Browse files
chore: upgrade torch 2.8.0 (#8836)
parent
c1d2061f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
.github/workflows/vllm-dependency-test.yml
.github/workflows/vllm-dependency-test.yml
+1
-1
python/pyproject.toml
python/pyproject.toml
+8
-8
python/sglang/srt/entrypoints/engine.py
python/sglang/srt/entrypoints/engine.py
+1
-1
scripts/ci_install_dependency.sh
scripts/ci_install_dependency.sh
+1
-1
No files found.
.github/workflows/vllm-dependency-test.yml
View file @
3ae8e3ea
...
@@ -29,9 +29,9 @@ jobs:
...
@@ -29,9 +29,9 @@ jobs:
-
name
:
Install dependencies
-
name
:
Install dependencies
run
:
|
run
:
|
bash scripts/ci_install_dependency.sh
pip install "vllm==0.10.0"
pip install "vllm==0.10.0"
pip install "bitsandbytes>=0.44.0"
pip install "bitsandbytes>=0.44.0"
bash scripts/ci_install_dependency.sh
-
name
:
Run VLLM dependency tests
-
name
:
Run VLLM dependency tests
timeout-minutes
:
60
timeout-minutes
:
60
...
...
python/pyproject.toml
View file @
3ae8e3ea
...
@@ -7,7 +7,7 @@ name = "sglang"
...
@@ -7,7 +7,7 @@ name = "sglang"
version
=
"0.4.10.post2"
version
=
"0.4.10.post2"
description
=
"SGLang is yet another fast serving framework for large language models and vision language models."
description
=
"SGLang is yet another fast serving framework for large language models and vision language models."
readme
=
"README.md"
readme
=
"README.md"
requires-python
=
">=3.
8
"
requires-python
=
">=3.
9
"
license
=
{
file
=
"LICENSE"
}
license
=
{
file
=
"LICENSE"
}
classifiers
=
[
classifiers
=
[
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3"
,
...
@@ -54,10 +54,10 @@ runtime_common = [
...
@@ -54,10 +54,10 @@ runtime_common = [
srt
=
[
srt
=
[
"sglang[runtime_common]"
,
"sglang[runtime_common]"
,
"sgl-kernel==0.
2.8
"
,
"sgl-kernel==0.
3.2
"
,
"torch==2.
7.1
"
,
"torch==2.
8.0
"
,
"torchaudio==2.
7.1
"
,
"torchaudio==2.
8.0
"
,
"torchvision
==0.22.1
"
,
"torchvision"
,
"cuda-python"
,
"cuda-python"
,
"einops"
,
"einops"
,
"flashinfer_python==0.2.10"
,
"flashinfer_python==0.2.10"
,
...
@@ -66,9 +66,9 @@ srt = [
...
@@ -66,9 +66,9 @@ srt = [
blackwell
=
[
blackwell
=
[
"sglang[runtime_common]"
,
"sglang[runtime_common]"
,
"sgl-kernel"
,
"sgl-kernel"
,
"torch==2.
7.1
"
,
"torch==2.
8.0
"
,
"torchaudio==2.
7.1
"
,
"torchaudio==2.
8.0
"
,
"torchvision
==0.22.1
"
,
"torchvision"
,
"cuda-python"
,
"cuda-python"
,
"einops"
,
"einops"
,
"flashinfer_python==0.2.10"
,
"flashinfer_python==0.2.10"
,
...
...
python/sglang/srt/entrypoints/engine.py
View file @
3ae8e3ea
...
@@ -649,7 +649,7 @@ def _set_envs_and_config(server_args: ServerArgs):
...
@@ -649,7 +649,7 @@ def _set_envs_and_config(server_args: ServerArgs):
if
_is_cuda
:
if
_is_cuda
:
assert_pkg_version
(
assert_pkg_version
(
"sgl-kernel"
,
"sgl-kernel"
,
"0.
2.8
"
,
"0.
3.2
"
,
"Please reinstall the latest version with `pip install sgl-kernel --force-reinstall`"
,
"Please reinstall the latest version with `pip install sgl-kernel --force-reinstall`"
,
)
)
...
...
scripts/ci_install_dependency.sh
View file @
3ae8e3ea
...
@@ -17,7 +17,7 @@ rm -rf /usr/local/lib/python3.10/dist-packages/flashinfer*
...
@@ -17,7 +17,7 @@ rm -rf /usr/local/lib/python3.10/dist-packages/flashinfer*
rm
-rf
/usr/local/lib/python3.10/dist-packages/sgl_kernel
*
rm
-rf
/usr/local/lib/python3.10/dist-packages/sgl_kernel
*
# Install the main package
# Install the main package
pip
install
-e
"python[dev]"
pip
install
-e
"python[dev]"
--extra-index-url
https://download.pytorch.org/whl/test/cu126
# Show current packages
# Show current packages
pip list
pip list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment