Use local objects.inv for intersphinx mapping and use the one from corresponding *-doc packages

Forwarded: not-needed

Gbp-Pq: Name local-intersphinx-mapping.patch
This commit is contained in:
Frédéric Bonnard 2022-04-20 15:09:25 +02:00 committed by luoyaoming
parent d20609f409
commit 881c9ce2b1
1 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ version = sass.__version__
# The full version, including alpha/beta/rc tags.
release = version
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
intersphinx_mapping = {'python': ('/usr/share/doc/python3-doc/html', None)}
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -264,9 +264,9 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'python': ('https://docs.python.org/', None),
'setuptools': ('https://setuptools.readthedocs.io/en/latest/', None),
'flask': ('http://flask.pocoo.org/docs/', None),
'python': ('/usr/share/doc/python3-doc/html', None),
'setuptools': ('/usr/share/doc/python-setuptools-doc/html', None),
'flask': ('/usr/share/doc/python-flask-doc/html', None),
}