diff --git a/titantuner/__init__.py b/titantuner/__init__.py index 4170ddc..f035881 100644 --- a/titantuner/__init__.py +++ b/titantuner/__init__.py @@ -4,7 +4,7 @@ import numpy as np -VERSION = "0.1.0" +VERSION = "0.1.1" __all__ = [] for loader, module_name, is_pkg in pkgutil.walk_packages(__path__): if module_name != "__main__": diff --git a/titantuner/version.py b/titantuner/version.py deleted file mode 100644 index 14bebe0..0000000 --- a/titantuner/version.py +++ /dev/null @@ -1,16 +0,0 @@ -# file generated by setuptools_scm -# don't change, don't track in version control -TYPE_CHECKING = False -if TYPE_CHECKING: - from typing import Tuple, Union - VERSION_TUPLE = Tuple[Union[int, str], ...] -else: - VERSION_TUPLE = object - -version: str -__version__: str -__version_tuple__: VERSION_TUPLE -version_tuple: VERSION_TUPLE - -__version__ = version = '0.1.dev52+g4f76b04.d20231128' -__version_tuple__ = version_tuple = (0, 1, 'dev52', 'g4f76b04.d20231128')