From 32d95e4463bd516318eb49f9a6f6a1ba2945a524 Mon Sep 17 00:00:00 2001 From: Kostis Anagnostopoulos Date: Mon, 25 May 2020 14:16:25 +0300 Subject: [PATCH] fix(site): intersphinx link to recent PY2.7-->PY3 Update link used by `sphinx.ext.intersphinx` extension to standard python docs, from PY2.7 --> PY alone (currently meant PY3), so links to standard lib do not point to (almost) EOL Python. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index f8bebfb..76d603a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -112,7 +112,7 @@ exclude_patterns = ['_build'] pygments_style = 'sphinx' # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'python': ('https://docs.python.org/2.7', None)} +intersphinx_mapping = {'python': ('https://docs.python.org/', None)} # -- Options for HTML output ----------------------------------------------