From 1232a14de817a18146c505d6956e3fd73fee358d Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Fri, 12 Mar 2021 00:49:49 +0100 Subject: Make `conf.py` template use new-style interpshinx Fixes #8985 --- sphinx/templates/quickstart/conf.py_t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sphinx/templates') diff --git a/sphinx/templates/quickstart/conf.py_t b/sphinx/templates/quickstart/conf.py_t index 8a20fc4c8..42a6fa3ef 100644 --- a/sphinx/templates/quickstart/conf.py_t +++ b/sphinx/templates/quickstart/conf.py_t @@ -105,7 +105,9 @@ html_static_path = ['{{ dot }}static'] # -- Options for intersphinx extension --------------------------------------- # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/3/': None} +intersphinx_mapping = { + 'python': ('https://docs.python.org/3', None), +} {%- endif %} {%- if 'sphinx.ext.todo' in extensions %} -- cgit v1.2.1