You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2020. It is now read-only.
setup.py, line 142ff
if info["branch"].startswith("release/"):
project_version = info["branch"][len("release/"):]
project, version, dev = project_version.split("-") #!will break when there is only one hyphen "-"
assert project == project_name, (
"Branched project {!r} != {!r}".format(project, project_name)
)
assert version == base_version, (
"Branched version {!r} != {!r}".format(version, base_version)
)
assert dev == "dev", ( #!there might be no "dev" in the project version.
"Branch name doesn't end in -dev: {!r}".format(info["branch"])