mirror of
https://github.com/vllm-project/vllm.git
synced 2025-10-20 23:03:52 +08:00
14 lines
308 B
Python
14 lines
308 B
Python
import warnings
|
|
|
|
try:
|
|
import vllm.commit_id
|
|
|
|
__commit__ = vllm.commit_id.__commit__
|
|
except Exception as e:
|
|
warnings.warn(f"Failed to read commit hash:\n{e}",
|
|
RuntimeWarning,
|
|
stacklevel=2)
|
|
__commit__ = "COMMIT_HASH_PLACEHOLDER"
|
|
|
|
__version__ = "0.6.1.post2"
|