Coverage for /home/runner/work/tket/tket/pytket/pytket/_version.py: 100%
13 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-10 11:51 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-10 11:51 +0000
1# file generated by setuptools-scm
2# don't change, don't track in version control
4__all__ = [
5 "__version__",
6 "__version_tuple__",
7 "version",
8 "version_tuple",
9 "__commit_id__",
10 "commit_id",
11]
13TYPE_CHECKING = False
14if TYPE_CHECKING:
15 from typing import Tuple
16 from typing import Union
18 VERSION_TUPLE = Tuple[Union[int, str], ...]
19 COMMIT_ID = Union[str, None]
20else:
21 VERSION_TUPLE = object
22 COMMIT_ID = object
24version: str
25__version__: str
26__version_tuple__: VERSION_TUPLE
27version_tuple: VERSION_TUPLE
28commit_id: COMMIT_ID
29__commit_id__: COMMIT_ID
31__version__ = version = '0.1.dev1+g6eba7baab'
32__version_tuple__ = version_tuple = (0, 1, 'dev1', 'g6eba7baab')
34__commit_id__ = commit_id = 'g6eba7baab'