From f88408af0e5bb9cfcc623790700172f9ffbc90cc Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Wed, 24 Jul 2024 09:49:16 -0400 Subject: [PATCH] Update the intersphinx_mapping format Fixes: ``` WARNING: The pre-Sphinx 1.0 'intersphinx_mapping' format is deprecated and will be removed in Sphinx 8. Update to the current format as described in the documentation. Hint: "intersphinx_mapping = {'': ('http://docs.python.org/', None)}".https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#confval-intersphinx_mapping ``` --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index ef6a821..0ce4eda 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -83,4 +83,4 @@ htmlhelp_basename = 'MorphoPydoc' -intersphinx_mapping = {'http://docs.python.org/': None} \ No newline at end of file +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}