Coverage for src/audioio/version.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.6.3, created at 2024-10-15 07:29 +0000

1""" Version and year of the audioio package. 

2""" 

3 

4__version__ = '2.2.0' 

5""" Current version of the audioio package as string 'x.y.z'. """ 

6 

7__year__ = '2024' 

8""" Year of the current audioio version as string. """ 

9 

10__pdoc__ = {} 

11__pdoc__['__version__'] = True 

12__pdoc__['__year__'] = True 

13