You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
677 B
23 lines
677 B
# 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"])
|
|
|
|
# DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
|
|
version_info = VersionInfo(7, 0, 0, "alpha", 5)
|
|
|
|
_specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}
|
|
|
|
__version__ = "{}.{}.{}{}".format(
|
|
version_info.major,
|
|
version_info.minor,
|
|
version_info.micro,
|
|
(
|
|
""
|
|
if version_info.releaselevel == "final"
|
|
else _specifier_[version_info.releaselevel] + str(version_info.serial)
|
|
),
|
|
)
|