Skip to content

Commit 59490fa

Browse files
committed
All branches are now specifying their needed Sphinx version.
1 parent 12fad88 commit 59490fa

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ Install `tools_requirements.txt` then run `python check_versions.py
2121
../cpython/` (pointing to a real CPython clone) to see which version
2222
of Sphinx we're using where:
2323

24-
Docs build server is configured to use Sphinx 2.3.1
25-
2624
Sphinx configuration in various branches:
2725

2826
======== ============= ============= ================== ==================== ============= ===============

check_versions.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ def parse_args():
2626

2727

2828
def remote_by_url(repo: git.Repo, url_pattern: str):
29-
"""Find a remote of repo matching the regex url_pattern.
30-
"""
29+
"""Find a remote of repo matching the regex url_pattern."""
3130
for remote in repo.remotes:
3231
for url in remote.urls:
3332
if re.search(url_pattern, url):
@@ -120,11 +119,6 @@ def main():
120119
logging.basicConfig(level=logging.INFO)
121120
args = parse_args()
122121
repo = git.Repo(args.cpython_clone)
123-
print(
124-
"Docs build server is configured to use Sphinx",
125-
build_docs.DEFAULT_SPHINX_VERSION,
126-
)
127-
print()
128122
print("Sphinx configuration in various branches:", end="\n\n")
129123
search_sphinx_versions_in_cpython(repo)
130124
print()

0 commit comments

Comments
 (0)