Skip to content

Commit

Permalink
update 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 9e455ce commit 52c6702
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/mlmgen/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union

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

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

0 comments on commit 52c6702

Please sign in to comment.