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
eb30b888
Unverified
Commit
eb30b888
authored
Oct 06, 2025
by
Lianmin Zheng
Committed by
GitHub
Oct 06, 2025
Browse files
Remove env var warnings for release (#11262)
parent
5ee777c9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
26 deletions
+1
-26
.github/workflows/pr-test-xeon.yml
.github/workflows/pr-test-xeon.yml
+1
-1
python/pyproject_other.toml
python/pyproject_other.toml
+0
-11
python/sglang/launch_server.py
python/sglang/launch_server.py
+0
-14
No files found.
.github/workflows/pr-test-xeon.yml
View file @
eb30b888
...
@@ -73,7 +73,7 @@ jobs:
...
@@ -73,7 +73,7 @@ jobs:
timeout-minutes
:
36
timeout-minutes
:
36
run
:
|
run
:
|
docker exec -w /sglang-checkout/ ci_sglang_xeon \
docker exec -w /sglang-checkout/ ci_sglang_xeon \
bash -c "cd ./test/srt && python3 run_suite.py --suite per-commit-cpu"
bash -c "cd ./test/srt && python3 run_suite.py --suite per-commit-cpu
--timeout-per-file 1500
"
-
name
:
Change permission
-
name
:
Change permission
timeout-minutes
:
2
timeout-minutes
:
2
...
...
python/pyproject_other.toml
View file @
eb30b888
...
@@ -73,17 +73,6 @@ srt = [
...
@@ -73,17 +73,6 @@ srt = [
"flashinfer_python==0.4.0rc3"
,
"flashinfer_python==0.4.0rc3"
,
]
]
blackwell
=
[
"sglang[runtime_common]"
,
"sgl-kernel==0.3.14.post1"
,
"torch==2.8.0"
,
"torchaudio==2.8.0"
,
"torchvision"
,
"cuda-python"
,
"flashinfer_python==0.4.0rc3"
,
"nvidia-cutlass-dsl==4.2.0"
,
]
# HIP (Heterogeneous-computing Interface for Portability) for AMD
# HIP (Heterogeneous-computing Interface for Portability) for AMD
# => base docker rocm/vllm-dev:20250114, not from public vllm whl
# => base docker rocm/vllm-dev:20250114, not from public vllm whl
srt_hip
=
[
srt_hip
=
[
...
...
python/sglang/launch_server.py
View file @
eb30b888
...
@@ -7,23 +7,9 @@ from sglang.srt.entrypoints.http_server import launch_server
...
@@ -7,23 +7,9 @@ from sglang.srt.entrypoints.http_server import launch_server
from
sglang.srt.server_args
import
prepare_server_args
from
sglang.srt.server_args
import
prepare_server_args
from
sglang.srt.utils
import
kill_process_tree
from
sglang.srt.utils
import
kill_process_tree
MOVE_ENVS_WARN
=
"""
########################################################################
# For contributors and developers: #
# Please move environment variable definitions to sglang.srt.environ #
# using the following pattern: #
# SGLANG_XXX = EnvBool(False) #
# #
########################################################################
"""
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
server_args
=
prepare_server_args
(
sys
.
argv
[
1
:])
server_args
=
prepare_server_args
(
sys
.
argv
[
1
:])
from
sglang.srt.server_args
import
print_deprecated_warning
print_deprecated_warning
(
MOVE_ENVS_WARN
)
try
:
try
:
launch_server
(
server_args
)
launch_server
(
server_args
)
finally
:
finally
:
...
...
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