"vscode:/vscode.git/clone" did not exist on "d3fe85713508a69144ec610aa13253de34896338"
version.py 308 Bytes
Newer Older
1
2
3
4
import warnings

try:
    import vllm.commit_id
5

6
7
8
9
10
11
12
    __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"

13
__version__ = "0.6.1.post2"