We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b99f5 commit 3b528feCopy full SHA for 3b528fe
setup.py
@@ -585,8 +585,9 @@ def get_vllm_version() -> str:
585
elif _is_tpu():
586
version += f"{sep}tpu"
587
elif _is_cpu():
588
- if envs.VLLM_TARGET_DEVICE == "cpu":
589
- version += f"{sep}cpu"
+ # For CPU builds, we don't append a suffix to the version.
+ # The standard PyPI `torch` package is CPU-only by default.
590
+ pass # Do not append +cpu to the version string
591
elif _is_xpu():
592
version += f"{sep}xpu"
593
else:
0 commit comments