Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
jupyter-console
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Python Team
packages
jupyter-console
Commits
cb33f338
Commit
cb33f338
authored
4 months ago
by
Colin Watson
Browse files
Options
Downloads
Patches
Plain Diff
Port to Sphinx 8.0
Closes: #1090099
parent
efc4986a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
debian/patches/sphinx-8.0.patch
+27
-0
27 additions, 0 deletions
debian/patches/sphinx-8.0.patch
with
34 additions
and
0 deletions
debian/changelog
+
6
−
0
View file @
cb33f338
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
...
...
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
cb33f338
0002-Disable-sphinxcontrib_github_alt-in-documentation.patch
sphinx-8.0.patch
This diff is collapsed.
Click to expand it.
debian/patches/sphinx-8.0.patch
0 → 100644
+
27
−
0
View file @
cb33f338
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'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment