version.py 450 Bytes
Newer Older
1

2
try:
lizhigong's avatar
lizhigong committed
3
4
5
6
7
    __version__ = "0.7.2"
    __version_tuple__ = (0, 7, 2)
    __hcu_version__ = f'0.7.2+das.opt1.cust1.6b7651a.dtk2504' 
    
    from vllm.version import __version__, __version_tuple__, __hcu_version__
8
except Exception as e:
9
10
    import warnings

lizhigong's avatar
lizhigong committed
11
    warnings.warn(f"Failed to read commit hash:\n + str(e)",
12
13
                  RuntimeWarning,
                  stacklevel=2)
14
15
    __version__ = "dev"
    __version_tuple__ = (0, 0, __version__)