-
Notifications
You must be signed in to change notification settings - Fork 66
/
update_version.py
executable file
·100 lines (82 loc) · 3.21 KB
/
update_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
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
#!/usr/bin/python
# This script automatically creates a list of examples by reading the header in all problem.c files.
import glob
import subprocess
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii").strip()
with open("version.txt") as f:
reboundxversion = f.readlines()[0].strip()
print("Updating version to "+reboundxversion)
with open("doc/index.rst") as f:
index = f.readlines()
with open("doc/index.rst","w") as f:
for i in range(0,len(index)):
if "Welcome to REBOUNDx" in index[i]:
index[i] = "Welcome to REBOUNDx ("+reboundxversion+")\n"
underline = ""
for j in range(len(index[i])-1):
underline += "="
underline += "\n"
index[i+1] = underline
f.write(index[i])
with open("README.rst") as f:
readme = f.readlines()
with open("README.rst","w") as f:
for i in range(0,len(readme)):
if "badge/REBOUNDx-v" in readme[i]:
readme[i] = ".. image:: https://img.shields.io/badge/REBOUNDx-v"+reboundxversion+"-green.svg?style=flat\n"
f.write(readme[i])
with open("src/core.c") as f:
reboundxlines = f.readlines()
for i,l in enumerate(reboundxlines):
if "**VERSIONLINE**" in l:
reboundxlines[i] = "const char* rebx_version_str = \""+reboundxversion+"\"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.\n"
with open("src/core.c", "w") as f:
f.writelines(reboundxlines)
with open("setup.py") as f:
setuplines = f.readlines()
for i,l in enumerate(setuplines):
if "version='" in l:
setuplines[i] = " version='"+reboundxversion+"',\n"
if "GITHASHAUTOUPDATE" in l:
setuplines[i] = " ghash_arg = \"-DREBXGITHASH="+ghash+"\" #GITHASHAUTOUPDATE\n"
with open("setup.py", "w") as f:
f.writelines(setuplines)
shortversion = reboundxversion
while shortversion[-1] != '.':
shortversion = shortversion[:-1]
shortversion = shortversion[:-1]
with open("doc/conf.py") as f:
conflines = f.readlines()
for i,l in enumerate(conflines):
if "version =" in l:
conflines[i] = "version = '"+shortversion+"'\n"
if "release =" in l:
conflines[i] = "release = '"+reboundxversion+"'\n"
with open("doc/conf.py", "w") as f:
f.writelines(conflines)
# find changelog
with open("changelog.md") as f:
found_start = 0
changelog = ""
cl = f.readlines()
for l in cl:
if found_start == 0 and l.startswith("### Version"):
if reboundxversion in l:
found_start = 1
continue
if found_start == 1 and l.startswith("### Version"):
found_start = 2
if found_start == 1:
changelog += l
if found_start != 2 or len(changelog.strip())<5:
raise RuntimeError("Changelog not found")
with open("_changelog.tmp", "w") as f:
f.writelines(changelog.strip()+"\n")
print("----")
print("Changelog:\n")
print(changelog.strip())
print("----")
print("Next:")
print("\ngit commit -a -m \""+reboundxversion+"\"")
print("git tag "+reboundxversion+" && git push --tags")
print("gh release create "+reboundxversion+" --notes-file _changelog.tmp")