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.
This commit is contained in:
Kostis Anagnostopoulos 2020-05-25 14:16:25 +03:00 committed by GitHub
parent 41a926e64f
commit 32d95e4463
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ exclude_patterns = ['_build']
pygments_style = 'sphinx' pygments_style = 'sphinx'
# Example configuration for intersphinx: refer to the Python standard library. # 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 ---------------------------------------------- # -- Options for HTML output ----------------------------------------------