[CI/Build] fix pre-compiled wheel install for exact tag (#11373)

Signed-off-by: Daniele Trifirò <dtrifiro@redhat.com>
This commit is contained in:
Daniele 2024-12-20 17:14:40 +01:00 committed by GitHub
parent 04139ade59
commit 7c7aa37c69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: