Coverage for src/hdmf/_version.py: 77%

11 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-10-04 02:57 +0000

1# file generated by setuptools_scm 

2# don't change, don't track in version control 

3TYPE_CHECKING = False 

4if TYPE_CHECKING: 4 ↛ 5line 4 didn't jump to line 5, because the condition on line 4 was never true

5 from typing import Tuple, Union 

6 VERSION_TUPLE = Tuple[Union[int, str], ...] 

7else: 

8 VERSION_TUPLE = object 

9 

10version: str 

11__version__: str 

12__version_tuple__: VERSION_TUPLE 

13version_tuple: VERSION_TUPLE 

14 

15__version__ = version = '3.10.0' 

16__version_tuple__ = version_tuple = (3, 10, 0)