forked from scottransom/presto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
determine_version.py
44 lines (39 loc) · 1.48 KB
/
determine_version.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import subprocess
import sys
# Determine the version info from git
result = subprocess.run(
["git", "describe", "--tags", "--long"], capture_output=True, text=True
).stdout
tag, nplus, commit = result.split("-")
if len(sys.argv) > 1 and sys.argv[1] in ["-v", "--show"]:
print(f"Last tag: {tag}")
print(f"Number of commits since tag: {nplus}")
print(f"Commit object name: {commit[1:] if commit.startswith('g') else commit}")
# Strip a leading v if it is there
tag = f"{tag[1:] if tag.startswith('v') else tag}"
# This should be a legal Python version format
version = f"{tag}.dev{nplus}" if int(nplus) else tag
print(version)
if len(sys.argv) > 1 and sys.argv[1] in ["-w", "--write"]:
# Update the version info in meson.build and the python pyproject.toml files
with open("meson.build", "r+") as f:
ll = f.readlines()
f.seek(0)
for line in ll:
ls = line.split()
if len(ls) >= 2:
if ls[0]=="version:":
f.write(f" version: '{version}',\n")
continue
f.write(line)
# Update the version info in meson.build and the python pyproject.toml files
with open("python/pyproject.toml", "r+") as f:
ll = f.readlines()
f.seek(0)
for line in ll:
ls = line.split()
if len(ls) >= 2:
if ls[0]=="version":
f.write(f"version = '{version}'\n")
continue
f.write(line)