1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Update sphinx config to fix FTBFS
Fixes the following error:
ERROR: Invalid value `None` in intersphinx_mapping['http://docs.python.org/'].
Expected a two-element tuple or list.
Forwarded: not-needed
Bug-Debian: https://bugs.debian.org/1090173
Origin: backport, https://gitlab.com/tango-controls/tango-doc/-/commit/494e82de2c7912d89a11ceff6768772bfed1b6e9
Author: Santiago Ruano Rincón <santiago@freexian.com>
Index: tango-10.0.0+dfsg1/doc/src/source/conf.py
===================================================================
--- tango-10.0.0+dfsg1.orig/doc/src/source/conf.py
+++ tango-10.0.0+dfsg1/doc/src/source/conf.py
@@ -444,7 +444,7 @@ epub_exclude_files = ['search.html']
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'http://docs.python.org/': None}
+intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
# link checking options
|