Coverage for /pythoncovmergedfiles/medio/medio/src/py/py/_version.py: 74%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
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 = '1.11.1.dev5+g6b219734f'
32__version_tuple__ = version_tuple = (1, 11, 1, 'dev5', 'g6b219734f')
34__commit_id__ = commit_id = 'g6b219734f'