12 lines
349 B
Python
12 lines
349 B
Python
|
from __future__ import annotations
|
||
|
|
||
|
# When updating this version number, please update the
|
||
|
# ``docs/source/global.rst.inc`` file as well.
|
||
|
VERSION_MAJOR = 5
|
||
|
VERSION_MINOR = 0
|
||
|
VERSION_BUILD = 0
|
||
|
VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
|
||
|
VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"
|
||
|
|
||
|
__version__ = VERSION_INFO
|