File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed
Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff 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
2222of 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 ======== ============= ============= ================== ==================== ============= ===============
Original file line number Diff line number Diff line change @@ -26,8 +26,7 @@ def parse_args():
2626
2727
2828def 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 ()
You can’t perform that action at this time.
0 commit comments