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