-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathnew_version.py
65 lines (52 loc) · 1.73 KB
/
new_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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# Modify version...
import os
import re
import subprocess
import sys
from distutils.version import StrictVersion
PROJECT_DIRECTORY = os.path.join(os.path.dirname(__file__), "..")
def main(argv):
source_dir = argv[1]
old_version = StrictVersion(argv[2])
dot_at = 1
if len(argv) > 3:
dot_at = int(argv[3])
old_version_tuple = old_version.version
new_version_tuple = list(old_version_tuple)
for i in range(len(new_version_tuple)):
if i < dot_at:
continue
if dot_at == i:
new_version_tuple[i] = old_version_tuple[i] + 1
else:
new_version_tuple[i] = 0
new_version = ".".join(map(str, new_version_tuple))
history_path = os.path.join(PROJECT_DIRECTORY, "HISTORY.rst")
with open(history_path, "r") as fh:
history = fh.read()
def extend(from_str, line):
from_str += "\n"
return history.replace(from_str, from_str + line + "\n")
history = extend(".. to_doc", """
---------------------
%s.dev0
---------------------
""" % new_version)
with open(history_path, "w") as fh:
fh.write(history)
source_mod_path = os.path.join(PROJECT_DIRECTORY, source_dir, "__init__.py")
with open(source_mod_path, "r") as fh:
mod = fh.read()
mod = re.sub(r"__version__ = '[\d\.]+'",
"__version__ = '%s.dev0'" % new_version,
mod, 1)
with open(source_mod_path, "w") as fh:
mod = fh.write(mod)
shell(["git", "commit", "-m", "Starting work on %s" % new_version,
"HISTORY.rst", "%s/__init__.py" % source_dir])
def shell(cmds, **kwds):
p = subprocess.Popen(cmds, **kwds)
return p.wait()
if __name__ == "__main__":
main(sys.argv)