From: Fredrik Lönnegren Date: Thu, 5 Dec 2024 16:45:50 +0000 (+0100) Subject: docs: Update intersphinx_mapping X-Git-Tag: archive/debian/0.39_rc0-1~16 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=969b26704da11c9e1935e5b442f6a88b32bb7e22;p=notmuch docs: Update intersphinx_mapping Running `make dirhtml` in bindings/python/docs generates the following error: ``` sphinx-build -b dirhtml -d build/doctrees source build/dirhtml Running Sphinx v8.0.2 loading translations [en]... done making output directory... done Converting `source_suffix = '.rst'` to `source_suffix = {'.rst': 'restructuredtext'}`. ERROR: Invalid value `None` in intersphinx_mapping['https://docs.python.org/']. Expected a two-element tuple or list. ``` This commit updates intersphinx_mapping to follow the latest docs [1] [1] https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html Signed-off-by: Fredrik Lönnegren --- diff --git a/bindings/python/docs/source/conf.py b/bindings/python/docs/source/conf.py index 8b43c5ca..bd4c8b17 100644 --- a/bindings/python/docs/source/conf.py +++ b/bindings/python/docs/source/conf.py @@ -206,4 +206,4 @@ latex_documents = [ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}