forked from python/docsbuild-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_versions.py
133 lines (109 loc) · 3.76 KB
/
check_versions.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
#!/usr/bin/env python
from pathlib import Path
import argparse
import asyncio
import logging
import re
import httpx
from tabulate import tabulate
import git
import build_docs
logger = logging.getLogger(__name__)
def parse_args():
parser = argparse.ArgumentParser(
description="""Check the version of our build in different branches
Hint: Use with | column -t"""
)
parser.add_argument("cpython_clone", help="Path to a clone of cpython", type=Path)
return parser.parse_args()
def remote_by_url(repo: git.Repo, url_pattern: str):
"""Find a remote of repo matching the regex url_pattern."""
for remote in repo.remotes:
for url in remote.urls:
if re.search(url_pattern, url):
return remote
def find_sphinx_spec(text: str):
if found := re.search(
"""sphinx[=<>~]{1,2}[0-9.]{3,}|needs_sphinx = [0-9.'"]*""", text, flags=re.I
):
return found.group(0).replace(" ", "")
return "ø"
def find_sphinx_in_file(repo: git.Repo, branch, filename):
upstream = remote_by_url(repo, "github.com.python").name
# Just in case you don't use origin/:
branch = branch.replace("origin/", upstream + "/")
try:
return find_sphinx_spec(repo.git.show(f"{branch}:{filename}"))
except git.exc.GitCommandError:
return "ø"
CONF_FILES = {
"travis": ".travis.yml",
"azure": ".azure-pipelines/docs-steps.yml",
"requirements.txt": "Doc/requirements.txt",
"conf.py": "Doc/conf.py",
}
def search_sphinx_versions_in_cpython(repo: git.Repo):
repo.git.fetch("https://github.com/python/cpython")
table = []
for version in sorted(build_docs.VERSIONS):
table.append(
[
version.name,
*[
find_sphinx_in_file(repo, version.branch_or_tag, filename)
for filename in CONF_FILES.values()
],
]
)
print(tabulate(table, headers=["version", *CONF_FILES.keys()], tablefmt="rst"))
async def get_version_in_prod(language, version):
url = f"https://docs.python.org/{language}/{version}/".replace("/en/", "/")
async with httpx.AsyncClient() as client:
try:
response = await client.get(url, timeout=10)
except httpx.ConnectTimeout:
return "(timeout)"
text = response.text.encode("ASCII", errors="ignore").decode("ASCII")
if created_using := re.search(
r"(?:sphinx.pocoo.org|www.sphinx-doc.org).*?([0-9.]+[0-9])", text, flags=re.M
):
return created_using.group(1)
return "ø"
async def which_sphinx_is_used_in_production():
table = []
for version in sorted(build_docs.VERSIONS):
table.append(
[
version.name,
*await asyncio.gather(
*[
get_version_in_prod(language.tag, version.name)
for language in build_docs.LANGUAGES
]
),
]
)
print(
tabulate(
table,
disable_numparse=True,
headers=[
"version",
*[language.tag for language in sorted(build_docs.LANGUAGES)],
],
tablefmt="rst",
)
)
def main():
logging.basicConfig(level=logging.INFO)
logging.getLogger("charset_normalizer").setLevel(logging.WARNING)
logging.getLogger("asyncio").setLevel(logging.WARNING)
args = parse_args()
repo = git.Repo(args.cpython_clone)
print("Sphinx configuration in various branches:", end="\n\n")
search_sphinx_versions_in_cpython(repo)
print()
print("Sphinx build as seen on docs.python.org:", end="\n\n")
asyncio.run(which_sphinx_is_used_in_production())
if __name__ == "__main__":
main()