本文整理汇总了Python中version.Version.get_next_minor_release方法的典型用法代码示例。如果您正苦于以下问题:Python Version.get_next_minor_release方法的具体用法?Python Version.get_next_minor_release怎么用?Python Version.get_next_minor_release使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类version.Version
的用法示例。
在下文中一共展示了Version.get_next_minor_release方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: inc_minor_version
# 需要导入模块: from version import Version [as 别名]
# 或者: from version.Version import get_next_minor_release [as 别名]
def inc_minor_version(job_name):
"""
Bump the VERSION build parameter by a minor version.
"""
print(("Incrementing the minor version # on " +
"{} jenkins job").format(job_name))
xml = j.get_job_config(job_name)
versionPattern = re.compile(r'VERSION=(\d+).(\d+).(\d+)')
current_version_raw = versionPattern.search(xml).groups()
if len(current_version_raw) != 3:
raise Exception("Couldn't parse version")
current_version = Version(*map(int, current_version_raw))
next_minor_version = current_version.get_next_minor_release()
print('changing {} version reference {} to {}'.format(job_name,
current_version,
next_minor_version))
xml = xml.replace("VERSION={}".format(current_version),
"VERSION={}".format(next_minor_version))
j.reconfig_job(job_name, xml)