clearml-server/server/config/info.py

21 lines
387 B
Python
Raw Normal View History

2019-07-08 21:01:16 +00:00
from functools import lru_cache
from pathlib import Path
root = Path(__file__).parent.parent
@lru_cache()
def get_build_number():
try:
return (root / "BUILD").read_text().strip()
except FileNotFoundError:
return ""
@lru_cache()
def get_version():
try:
return (root / "VERSION").read_text().strip()
except FileNotFoundError:
return ""