mirror of
https://github.com/wassname/vllm.git
synced 2026-06-30 21:12:53 +08:00
ee5f34b1c2
Co-authored-by: youkaichao <youkaichao@126.com>
12 lines
296 B
Python
12 lines
296 B
Python
try:
|
|
from ._version import __version__, __version_tuple__
|
|
except Exception as e:
|
|
import warnings
|
|
|
|
warnings.warn(f"Failed to read commit hash:\n{e}",
|
|
RuntimeWarning,
|
|
stacklevel=2)
|
|
|
|
__version__ = "dev"
|
|
__version_tuple__ = (0, 0, __version__)
|