mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
20 lines
694 B
Python
20 lines
694 B
Python
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
from collections import namedtuple
|
|
|
|
VersionInfo = namedtuple("VersionInfo", ["major", "minor", "micro", "releaselevel", "serial"])
|
|
|
|
version_info = VersionInfo(4, 10, 0, "final", 0)
|
|
|
|
_specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": "", "dev": "dev"}
|
|
|
|
if version_info.releaselevel == "final":
|
|
_suffix_ = ""
|
|
elif version_info.releaselevel == "dev":
|
|
_suffix_ = f".dev{version_info.serial}"
|
|
else:
|
|
_suffix_ = f"{_specifier_[version_info.releaselevel]}{version_info.serial}"
|
|
|
|
__version__ = f"{version_info.major}.{version_info.minor}.{version_info.micro}{_suffix_}"
|