Skip to content

Commit 6d67c9c

Browse files
committed
Add backwards compat for vllm.scripts
This allows existing editable installs to continue to work. Signed-off-by: Russell Bryant <rbryant@redhat.com>
1 parent 0748ed2 commit 6d67c9c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

vllm/scripts.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
from vllm.cmd.main import main as vllm_main
4+
5+
6+
# Backwards compatibility for the move from vllm.scripts to vllm.cmd.main
7+
def main():
8+
vllm_main()

0 commit comments

Comments
 (0)