Skip to content
Snippets Groups Projects
Commit cb33f338 authored by Colin Watson's avatar Colin Watson
Browse files

Port to Sphinx 8.0

Closes: #1090099
parent efc4986a
No related branches found
No related tags found
No related merge requests found
jupyter-console (6.6.3-2) UNRELEASED; urgency=medium
* Port to Sphinx 8.0 (closes: #1090099).
-- Colin Watson <cjwatson@debian.org> Fri, 03 Jan 2025 14:51:33 +0000
jupyter-console (6.6.3-1) unstable; urgency=medium
* New upstream version 6.6.3
......
0002-Disable-sphinxcontrib_github_alt-in-documentation.patch
sphinx-8.0.patch
From: Colin Watson <cjwatson@debian.org>
Date: Fri, 3 Jan 2025 14:50:16 +0000
Subject: Port to Sphinx 8.0
The old `intersphinx_mapping` format has been removed; it must now map
identifiers to (target, inventory) tuples.
Forwarded: https://github.com/jupyter/jupyter_console/pull/301
Bug-Debian: https://bugs.debian.org/1090099
Last-Update: 2025-01-03
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index 7ea597b..eac8d17 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -310,7 +310,7 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'https://docs.python.org/3': None,}
+intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
# on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment