Coverage for pyotrs/version.py: 100%
2 statements
« prev ^ index » next coverage.py v7.4.1, created at 2024-04-06 19:25 +0000
« prev ^ index » next coverage.py v7.4.1, created at 2024-04-06 19:25 +0000
1""" Store the version here so:
2# 1) we don't load dependencies by storing it in __init__.py
3# 2) we can import it in setup.py for the same reason
4# 3) we can import it into your module module
5"""
7__version_info__ = ('1', '4', '0')
8__version__ = '.'.join(__version_info__)