-
Notifications
You must be signed in to change notification settings - Fork 50
/
tasks.py
executable file
·155 lines (127 loc) · 4.36 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
"""Deployment file to facilitate releases of monty."""
from __future__ import annotations
import datetime
import glob
import json
import os
import re
from typing import TYPE_CHECKING
import requests
from invoke import task
from monty import __version__ as ver
from monty.os import cd
if TYPE_CHECKING:
from invoke import Context
__author__ = "Shyue Ping Ong"
__copyright__ = "Copyright 2012, The Materials Project"
__version__ = "0.1"
__maintainer__ = "Shyue Ping Ong"
__email__ = "[email protected]"
__date__ = "Apr 29, 2012"
NEW_VER = datetime.datetime.today().strftime("%Y.%-m.%-d")
@task
def make_doc(ctx: Context) -> None:
with cd("docs"):
ctx.run("rm monty.*.rst", warn=True)
ctx.run("sphinx-apidoc --separate -P -M -d 6 -o . -f ../src/monty")
# ctx.run("rm monty*.html", warn=True)
# ctx.run("sphinx-build -b html . ../docs") # HTML building.
ctx.run("sphinx-build -M markdown . .")
ctx.run("rm *.rst", warn=True)
ctx.run("cp markdown/monty*.md .")
for fn in glob.glob("monty*.md"):
with open(fn) as f:
lines = [line.rstrip() for line in f if "Submodules" not in line]
if fn == "monty.md":
preamble = [
"---",
"layout: default",
"title: API Documentation",
"nav_order: 5",
"---",
"",
]
else:
preamble = [
"---",
"layout: default",
f"title: {fn}",
"nav_exclude: true",
"---",
"",
]
with open(fn, "w") as f:
f.write("\n".join(preamble + lines))
ctx.run("rm -r markdown", warn=True)
ctx.run("cp ../*.md .")
ctx.run("mv README.md index.md")
ctx.run("rm -rf *.orig doctrees", warn=True)
with open("index.md") as f:
contents = f.read()
with open("index.md", "w") as f:
contents = re.sub(
r"\n## Official Documentation[^#]*",
"{: .no_toc }\n\n## Table of contents\n{: .no_toc .text-delta }\n* TOC\n{:toc}\n\n",
contents,
)
contents = (
"---\nlayout: default\ntitle: Home\nnav_order: 1\n---\n\n" + contents
)
f.write(contents)
@task
def update_doc(ctx: Context) -> None:
ctx.run("git pull", warn=True)
make_doc(ctx)
ctx.run("git add .", warn=True)
ctx.run('git commit -a -m "Update dev docs"', warn=True)
ctx.run("git push", warn=True)
@task
def test(ctx: Context) -> None:
ctx.run("pytest")
@task
def setver(ctx: Context) -> None:
ctx.run(f'sed s/version=.*,/version=\\"{ver}\\",/ setup.py > newsetup')
ctx.run("mv newsetup setup.py")
@task
def release_github(ctx: Context) -> None:
with open("docs/changelog.md") as f:
contents = f.read()
toks = re.split("##", contents)
desc = toks[1].strip()
payload = {
"tag_name": f"v{NEW_VER}",
"target_commitish": "master",
"name": f"v{NEW_VER}",
"body": desc,
"draft": False,
"prerelease": False,
}
response = requests.post(
"https://api.github.com/repos/materialsvirtuallab/monty/releases",
data=json.dumps(payload),
headers={"Authorization": "token " + os.environ["GITHUB_RELEASES_TOKEN"]},
)
print(response.text)
@task
def commit(ctx: Context) -> None:
ctx.run(f'git commit -a -m "v{NEW_VER} release"', warn=True)
ctx.run("git push", warn=True)
@task
def set_ver(ctx: Context, version: str = NEW_VER) -> None:
with open("pyproject.toml", encoding="utf-8") as f:
contents = f.read()
contents = re.sub(r"version = ([\.\d\"]+)", f'version = "{version}"', contents)
with open("pyproject.toml", "w", encoding="utf-8") as f:
f.write(contents)
@task
def release(ctx: Context, notest: bool = False, version: str = NEW_VER) -> None:
set_ver(ctx, version)
if not notest:
test(ctx)
update_doc(ctx)
commit(ctx)
release_github(ctx)
ctx.run("python -m build", warn=True)
ctx.run("python -m build --wheel", warn=True)
ctx.run("twine upload --skip-existing dist/*.whl", warn=True)
ctx.run("twine upload --skip-existing dist/*.tar.gz", warn=True)