Skip to content

Commit

Permalink
format version string
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Müller <[email protected]>
  • Loading branch information
marcelmbn committed Aug 11, 2024
1 parent 52c6702 commit 24c3c31
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/mlmgen/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union

VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
Expand All @@ -12,5 +13,5 @@
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = '0.1.dev2+g9e455ce.d20240810'
__version_tuple__ = version_tuple = (0, 1, 'dev2', 'g9e455ce.d20240810')
__version__ = version = "0.1.dev2+g9e455ce.d20240810"
__version_tuple__ = version_tuple = (0, 1, "dev2", "g9e455ce.d20240810")

0 comments on commit 24c3c31

Please sign in to comment.