From 7c7aa37c6933c40a94da0789d0f330a8d89f091b Mon Sep 17 00:00:00 2001 From: Daniele <36171005+dtrifiro@users.noreply.github.com> Date: Fri, 20 Dec 2024 17:14:40 +0100 Subject: [PATCH] [CI/Build] fix pre-compiled wheel install for exact tag (#11373) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniele Trifirò --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fcfaa207c176a..a860093fe5f35 100644 --- a/setup.py +++ b/setup.py @@ -466,7 +466,7 @@ def get_vllm_version() -> str: version += f"{sep}empty" elif _is_cuda(): if envs.VLLM_USE_PRECOMPILED: - version += ".precompiled" + version += f"{sep}precompiled" else: cuda_version = str(get_nvcc_cuda_version()) if cuda_version != MAIN_CUDA_VERSION: