forked from ehForwarderBot/ehForwarderBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bump.py
executable file
·162 lines (140 loc) · 4.94 KB
/
bump.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/usr/local/bin/python3
# coding=utf-8
"""
Custom version bumper partially implements PEP 440.
"""
import argparse
import re
import subprocess
from packaging import version
from typing import Optional, List
PACKAGE = "ehforwarderbot"
parser = argparse.ArgumentParser(description="Custom version bumper partially implements PEP 440.")
parser.add_argument("level", action="store",
choices=("major", "minor", "patch", "alpha", "beta", "post", "dev"))
parser.add_argument("--dry-run", "-d", help="Dry run.", action="store_true")
parser.add_argument("--allow-dirty", "-a", help="Allow dirty git working directory.", action="store_true")
parser.add_argument("--no-commit", "-n", help="Do not make a new commit.", action="store_true")
parser.add_argument("--tag", "-t", help="Make a tag on the new commit.", action="store_true")
def bump_version(v: version.Version, level: str) -> str:
"""Version bump logic"""
release: List[int] = list(v.release)
stage: Optional[str]
pre: Optional[int]
stage, pre = v.pre if v.pre else (None, None)
dev: Optional[int] = v.dev
post: Optional[int] = v.post
if level in ("major", "minor", "patch"):
segments = 0
if level == "major":
# if the version code is in format of x.0.0, and pre/dev is not empty
# do not increase the version number
segments = 1
elif level == "minor":
# if the version code is in format of x.x.0, and pre/dev is not empty
# do not increase the version number
segments = 2
elif level == "patch":
# if the version code is in format of x.x.x, and pre/dev is not empty
# do not increase the version number
segments = 3
if not any(release[segments:]) and (stage is not None or dev is not None):
pass
else:
release[segments - 1] += 1
release[segments:] = [0] * max(len(release) - segments, 0)
stage = pre = post = dev = None # lgtm [py/unused-local-variable]
elif level == "alpha":
if stage is None:
if dev is None:
release[-1] += 1
stage, pre = "a", 1
elif stage > "a":
release[-1] += 1
stage, pre = "a", 1
elif stage == "a":
if not dev:
if pre is None:
pre = 1
else:
pre += 1
post = dev = None
elif level == "beta":
if stage is None:
if dev is None:
release[-1] += 1
stage, pre = "b", 1
elif stage > "b":
release[-1] += 1
stage, pre = "b", 1
elif stage == "b":
if not dev:
if pre is None:
pre = 1
else:
pre += 1
elif stage < "b":
pre = 1
stage = "b"
post = dev = None
elif level == "post":
if post is not None:
post += 1
else:
post = 1
dev = None
elif level == "dev":
if dev is not None:
dev += 1
else:
if stage:
if pre is None:
pre = 1
else:
pre += 1
else:
release[-1] += 1
dev = 1
ver = ".".join(str(i) for i in release)
if stage is not None:
ver += f"{stage}{pre}"
if post is not None:
ver += f".post{post}"
if dev is not None:
ver += f".dev{dev}"
return ver
def main():
args = parser.parse_args()
version_file_path = f"{PACKAGE}/__version__.py"
with open(version_file_path) as f:
content = f.read()
span = next(re.finditer(r'(?<=__version__ = ")[^"]+(?=")', content)).span()
source = (content[:span[0]], content[span[0]:span[1]], content[span[1]:])
v = version.parse(source[1])
new_ver = bump_version(v, args.level)
bump_message = f"bump: bumping version: {source[1]} -> {new_ver}"
print(bump_message)
if not args.allow_dirty:
lines = [
line.strip() for line in
subprocess.check_output(
["git", "status", "--porcelain"]).splitlines()
if not line.strip().startswith(b"??")
]
if lines:
print("Git working directory is dirty, stopped.")
exit(1)
if args.dry_run:
print("Dry run, not writing to the file")
else:
with open(version_file_path, 'w') as f:
f.write(source[0])
f.write(new_ver)
f.write(source[2])
if not args.dry_run and not args.no_commit:
subprocess.check_output(["git", "add", "--update", version_file_path])
subprocess.check_output(["git", "commit", "-S", "-m", bump_message])
if args.tag:
subprocess.check_output(["git", "tag", "-s", f"v{new_ver}", "-m", f"Release version {new_ver}"])
if __name__ == "__main__":
main()