Coverage for /pythoncovmergedfiles/medio/medio/src/py/py/_version.py: 71%
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__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
6TYPE_CHECKING = False
7if TYPE_CHECKING:
8 from typing import Tuple
9 from typing import Union
11 VERSION_TUPLE = Tuple[Union[int, str], ...]
12else:
13 VERSION_TUPLE = object
15version: str
16__version__: str
17__version_tuple__: VERSION_TUPLE
18version_tuple: VERSION_TUPLE
20__version__ = version = '1.11.1.dev5+g6b219734'
21__version_tuple__ = version_tuple = (1, 11, 1, 'dev5', 'g6b219734')