forked from materialsproject/pymatgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
360 lines (303 loc) · 11.2 KB
/
tasks.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
"""
Pyinvoke tasks.py file for automating releases and admin stuff.
To cut a new pymatgen release, use `invoke update-changelog` followed by `invoke release`.
Author: Shyue Ping Ong
"""
from __future__ import annotations
import datetime
import json
import os
import re
import subprocess
import webbrowser
from glob import glob
import requests
from invoke import task
from monty.os import cd
from pymatgen.core import __version__ as CURRENT_VER
@task
def make_doc(ctx):
"""
Generate API documentation + run Sphinx.
:param ctx:
"""
with open("CHANGES.rst") as f:
contents = f.read()
toks = re.split(r"\-{3,}", contents)
n = len(toks[0].split()[-1])
changes = [toks[0]]
changes.append("\n" + "\n".join(toks[1].strip().split("\n")[0:-1]))
changes = ("-" * n).join(changes)
with open("docs_rst/latest_changes.rst", "w") as f:
f.write(changes)
with cd("docs_rst"):
ctx.run("cp ../CHANGES.rst change_log.rst")
ctx.run("rm pymatgen.*.rst", warn=True)
ctx.run("sphinx-apidoc --implicit-namespaces --separate -d 7 -o . -f ../pymatgen")
ctx.run("rm *.tests.*rst")
for f in glob("*.rst"):
if f.startswith("pymatgen") and f.endswith("rst"):
new_output = []
sub_output = []
sub_package = False
with open(f) as fid:
for line in fid:
clean = line.strip()
if clean == "Subpackages":
sub_package = True
if not sub_package and not clean.endswith("tests"):
new_output.append(line)
else:
if not clean.endswith("tests"):
sub_output.append(line)
if clean.startswith("pymatgen") and not clean.endswith("tests"):
new_output.extend(sub_output)
sub_package = False
sub_output = []
with open(f, "w") as fid:
fid.write("".join(new_output))
ctx.run("make html")
ctx.run("cp _static/* ../docs/html/_static", warn=True)
with cd("docs"):
ctx.run("rm *.html", warn=True)
ctx.run("cp -r html/* .", warn=True)
ctx.run("rm -r html", warn=True)
ctx.run("rm -r doctrees", warn=True)
ctx.run("rm -r _sources", warn=True)
ctx.run("rm -r _build", warn=True)
# This makes sure pymatgen.org works to redirect to the Github page
ctx.run('echo "pymatgen.org" > CNAME')
# Avoid the use of jekyll so that _dir works as intended.
ctx.run("touch .nojekyll")
@task
def make_dash(ctx):
"""
Make customized doc version for Dash
:param ctx:
"""
ctx.run("cp docs_rst/conf-docset.py docs_rst/conf.py")
make_doc(ctx)
ctx.run("rm docs/_static/pymatgen.docset.tgz", warn=True)
ctx.run("doc2dash docs -n pymatgen -i docs/_images/pymatgen.svg -u https://pymatgen.org/")
plist = "pymatgen.docset/Contents/Info.plist"
xml = []
with open(plist) as f:
for l in f:
xml.append(l.strip())
if l.strip() == "<dict>":
xml.append("<key>dashIndexFilePath</key>")
xml.append("<string>index.html</string>")
with open(plist, "wt") as f:
f.write("\n".join(xml))
ctx.run('tar --exclude=".DS_Store" -cvzf pymatgen.tgz pymatgen.docset')
# xml = []
# with open("docs/pymatgen.xml") as f:
# for l in f:
# l = l.strip()
# if l.startswith("<version>"):
# xml.append(f"<version>{version}</version>")
# else:
# xml.append(l)
# with open("docs/pymatgen.xml", "wt") as f:
# f.write("\n".join(xml))
ctx.run("rm -r pymatgen.docset")
ctx.run("cp docs_rst/conf-normal.py docs_rst/conf.py")
@task
def contribute_dash(ctx, version):
make_dash(ctx)
ctx.run("cp pymatgen.tgz ../Dash-User-Contributions/docsets/pymatgen/pymatgen.tgz")
with cd("../Dash-User-Contributions/docsets/pymatgen"):
with open("docset.json") as f:
data = json.load(f)
data["version"] = version
with open("docset.json", "wt") as f:
json.dump(data, f, indent=4)
ctx.run(f'git commit --no-verify -a -m "Update to v{version}"')
ctx.run("git push")
ctx.run("rm pymatgen.tgz")
@task
def submit_dash_pr(ctx, version):
with cd("../Dash-User-Contributions/docsets/pymatgen"):
payload = {
"title": f"Update pymatgen docset to v{version}",
"body": f"Update pymatgen docset to v{version}",
"head": "Dash-User-Contributions:master",
"base": "master",
}
response = requests.post(
"https://api.github.com/repos/materialsvirtuallab/Dash-User-Contributions/pulls", data=json.dumps(payload)
)
print(response.text)
@task
def update_doc(ctx):
"""
Update the web documentation.
:param ctx:
"""
ctx.run("cp docs_rst/conf-normal.py docs_rst/conf.py")
make_doc(ctx)
ctx.run("git add .")
ctx.run('git commit -a -m "Update docs"')
ctx.run("git push")
@task
def publish(ctx):
"""
Upload release to Pypi using twine.
:param ctx:
"""
ctx.run("rm dist/*.*", warn=True)
ctx.run("python setup.py sdist bdist_wheel")
ctx.run("twine upload dist/*")
@task
def set_ver(ctx, version):
with open("pymatgen/core/__init__.py") as f:
contents = f.read()
contents = re.sub(r"__version__ = .*\n", f"__version__ = {version!r}\n", contents)
with open("pymatgen/core/__init__.py", "wt") as f:
f.write(contents)
with open("setup.py") as f:
contents = f.read()
contents = re.sub(r"version=([^,]+),", f"version={version!r},", contents)
with open("setup.py", "wt") as f:
f.write(contents)
@task
def release_github(ctx, version):
"""
Release to Github using Github API.
:param ctx:
"""
with open("CHANGES.rst") as f:
contents = f.read()
toks = re.split(r"\-+", contents)
desc = toks[1].strip()
toks = desc.split("\n")
desc = "\n".join(toks[:-1]).strip()
payload = {
"tag_name": f"v{version}",
"target_commitish": "master",
"name": f"v{version}",
"body": desc,
"draft": False,
"prerelease": False,
}
response = requests.post(
"https://api.github.com/repos/materialsproject/pymatgen/releases",
data=json.dumps(payload),
headers={"Authorization": f"token {os.environ['GITHUB_RELEASES_TOKEN']}"},
)
print(response.text)
def post_discourse(version):
"""
Post release announcement to http://discuss.matsci.org/c/pymatgen.
:param ctx:
"""
with open("CHANGES.rst") as f:
contents = f.read()
toks = re.split(r"\-+", contents)
desc = toks[1].strip()
toks = desc.split("\n")
desc = "\n".join(toks[:-1]).strip()
raw = f"v{version}\n\n{desc}"
payload = {
"topic_id": 36,
"raw": raw,
}
response = requests.post(
"https://discuss.matsci.org/c/pymatgen/posts.json",
data=payload,
params={"api_username": os.environ["DISCOURSE_API_USERNAME"], "api_key": os.environ["DISCOURSE_API_KEY"]},
)
print(response.text)
@task
def update_changelog(ctx, version=None, dry_run=False):
"""
Create a preliminary change log using the git logs.
:param ctx:
"""
version = version or f"{datetime.datetime.now():%Y.%-m.%-d}"
output = subprocess.check_output(["git", "log", "--pretty=format:%s", f"v{CURRENT_VER}..HEAD"])
lines = []
ignored_commits = []
for line in output.decode("utf-8").strip().split("\n"):
re_match = re.match(r"Merge pull request \#(\d+) from (.*)", line)
if re_match and "materialsproject/dependabot/pip" not in line:
pr_number = re_match.group(1)
contributor, pr_name = re_match.group(2).split("/", 1)
response = requests.get(f"https://api.github.com/repos/materialsproject/pymatgen/pulls/{pr_number}")
lines.append(f"* PR #{pr_number} from @{contributor} {pr_name}")
json_resp = response.json()
if "body" in json_resp and json_resp["body"]:
for ll in json_resp["body"].split("\n"):
ll = ll.strip()
if ll in ["", "## Summary"]:
continue
elif ll.startswith(("## Checklist", "## TODO")):
break
lines.append(f" {ll}")
ignored_commits.append(line)
with open("CHANGES.rst") as file:
contents = file.read()
delim = "=========="
tokens = contents.split(delim)
head = f"\n\nv{version}\n{'-' * (len(version) + 1)}\n"
tokens.insert(-1, head + "\n".join(lines))
if dry_run:
print(tokens[0] + delim + "".join(tokens[1:]))
else:
with open("CHANGES.rst", "w") as file:
file.write(tokens[0] + delim + "".join(tokens[1:]))
ctx.run("open CHANGES.rst")
print("The following commit messages were not included...")
print("\n".join(ignored_commits))
@task
def release(ctx, version=None, nodoc=False):
"""
Run full sequence for releasing pymatgen.
:param ctx:
:param nodoc: Whether to skip doc generation.
"""
version = version or f"{datetime.datetime.now():%Y.%-m.%-d}"
ctx.run("rm -r dist build pymatgen.egg-info", warn=True)
set_ver(ctx, version)
ctx.run("black setup.py")
ctx.run("black pymatgen/core/__init__.py")
if not nodoc:
make_doc(ctx)
ctx.run("git add .")
ctx.run('git commit -a -m "Update docs"')
ctx.run("git push")
release_github(ctx, version)
ctx.run("rm -f dist/*.*", warn=True)
ctx.run("python setup.py sdist bdist_wheel", warn=True)
check_egg_sources_txt_for_completeness()
ctx.run("twine upload --skip-existing dist/*.whl", warn=True)
ctx.run("twine upload --skip-existing dist/*.tar.gz", warn=True)
# post_discourse(ctx, warn=True)
@task
def open_doc(ctx):
"""
Open local documentation in web browser.
:param ctx:
"""
pth = os.path.abspath("docs/_build/html/index.html")
webbrowser.open(f"file://{pth}")
@task
def lint(ctx):
for cmd in ["pycodestyle", "mypy", "flake8", "pydocstyle"]:
ctx.run(f"{cmd} pymatgen")
def check_egg_sources_txt_for_completeness():
"""Check that all source and data files in pymatgen/ are listed in pymatgen.egg-info/SOURCES.txt."""
src_txt = "pymatgen.egg-info/SOURCES.txt"
if not os.path.exists(src_txt):
raise FileNotFoundError(f"{src_txt} not found. Run `pip install .` to create")
with open(src_txt) as file:
sources = file.read()
for src_file in sources.splitlines():
if not os.path.exists(src_file):
raise ValueError(f"{src_file} does not exist!")
for ext in ("py", "json", "json.gz", "yaml", "csv"):
for filepath in glob(f"pymatgen/**/*.{ext}", recursive=True):
if "/tests/" in filepath or "dao" in filepath:
continue
if filepath not in sources:
raise ValueError(f"{filepath} not found in {src_txt}")