Files
vllm/vllm/version.py
2024-09-23 09:44:26 -07:00

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__)