1
0
mirror of synced 2024-12-03 18:57:16 +01:00
jubeatools/utils/bump_version.py

33 lines
952 B
Python
Raw Normal View History

import argparse
import subprocess
import toml
parser = argparse.ArgumentParser()
parser.add_argument(
"rule",
help="either a semver string or a bump rule, will be passed to poetry",
)
parser.add_argument("--no-commit", dest="commit", action="store_false")
args = parser.parse_args()
subprocess.run(["poetry", "version", args.rule], check=True)
with open("pyproject.toml") as f:
pyproject = toml.load(f)
version = pyproject["tool"]["poetry"]["version"]
repo_url = pyproject["tool"]["poetry"]["repository"]
with open("jubeatools/version.py", mode="w") as f:
f.write(f'__version__ = "{version}"\n')
f.write(f'__repository_url__ = "{repo_url}"\n')
2021-05-01 13:18:35 +02:00
if args.commit:
subprocess.run(["git", "reset"])
2021-05-06 15:12:12 +02:00
subprocess.run(
["git", "add", "pyproject.toml", "jubeatools/version.py"], check=True
)
2021-05-01 13:18:35 +02:00
subprocess.run(["git", "commit", "-m", f"Bump version to {version}"])
subprocess.run(["git", "tag", f"v{version}"])