We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81594fd commit 521dc97Copy full SHA for 521dc97
fms_mo/version.py
@@ -14,13 +14,13 @@
14
"""FMS Model Optimizer version"""
15
16
try:
17
+ # Local
18
from ._version import __version__, __version_tuple__
19
except Exception as e:
20
+ # Standard
21
import warnings
22
- warnings.warn(f"Failed to read commit hash:\n{e}",
- RuntimeWarning,
23
- stacklevel=2)
+ warnings.warn(f"Failed to read commit hash:\n{e}", RuntimeWarning, stacklevel=2)
24
25
__version__ = "dev"
26
- __version_tuple__ = (0, 0, __version__)
+ __version_tuple__ = (0, 0, __version__)
0 commit comments