-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathupdate_readme.py
56 lines (47 loc) · 1.65 KB
/
update_readme.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
"""
update_readme.py
================
Updates the README.rst file with the latest help output.
"""
import contextlib
import io
import os
import re
import shutil
import sys
from pathlib import Path
from docsig import main
def _normalize_for_alternate_argparse_versions(text: str) -> str:
if "[path [path ...]]" not in text:
text = text.replace("[path ...]", "[path [path ...]]")
return text.replace(" options:", " optional arguments:")
shutil.get_terminal_size = lambda: os.terminal_size((93, 24)) # type: ignore
helpio = io.StringIO()
with contextlib.redirect_stdout(helpio), contextlib.suppress(SystemExit):
sys.argv = ["docsig", "--help"]
main()
path = Path(__file__).parent.parent / "README.rst"
conflict_pattern = re.compile(
r"^(<<<<<<<|=======|>>>>>>>).*\n?",
flags=re.MULTILINE,
)
commandline_pattern = re.compile(
r"(Commandline\s*\*+\s*..\s*code-block::\s*console\s*\n)((?:\s{4}.*\n)+)",
)
# this won't work if there's a conflict in the file as it analyses
# indents
readme_content = conflict_pattern.sub("", path.read_text())
match = commandline_pattern.search(readme_content)
if match is not None:
docsig_help = _normalize_for_alternate_argparse_versions(
re.sub(r"^", " ", helpio.getvalue(), flags=re.MULTILINE),
)
updated_readme_content = (
commandline_pattern.sub(rf"\1{docsig_help}", readme_content)
.replace(" \n", "\n")
.replace("\n\n\n", "\n\n")
)
if updated_readme_content != readme_content:
path.write_text(updated_readme_content)
# error if readme not correct to ensure ci knows about it
sys.exit("readme was not up-to-date, fixed")