From 2e45bd29fe738265931ed2565fc6b1d9aac0521a Mon Sep 17 00:00:00 2001 From: Reid <61492567+reidliu41@users.noreply.github.com> Date: Tue, 1 Apr 2025 21:58:05 +0800 Subject: [PATCH] [Misc] remove unused script (#15746) Signed-off-by: reidliu41 Co-authored-by: reidliu41 --- python_only_dev.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 python_only_dev.py diff --git a/python_only_dev.py b/python_only_dev.py deleted file mode 100644 index a303697b780a6..0000000000000 --- a/python_only_dev.py +++ /dev/null @@ -1,16 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 - -msg = """Old style python only build (without compilation) is deprecated, please check https://docs.vllm.ai/en/latest/getting_started/installation.html#python-only-build-without-compilation for the new way to do python only build (without compilation). - -TL;DR: - -VLLM_USE_PRECOMPILED=1 pip install -e . - -or - -export VLLM_COMMIT=33f460b17a54acb3b6cc0b03f4a17876cff5eafd # use full commit hash from the main branch -export VLLM_PRECOMPILED_WHEEL_LOCATION=https://wheels.vllm.ai/${VLLM_COMMIT}/vllm-1.0.0.dev-cp38-abi3-manylinux1_x86_64.whl -pip install -e . -""" # noqa - -print(msg)