Skip to content

Commit

Permalink
setup.py: fix pre-compiled wheel version string
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrifiro committed Dec 20, 2024
1 parent 2d1b9ba commit 9307104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9307104

Please # to comment.