Skip to content

Commit

Permalink
Fix intersphinx_mapping in sphinx config
Browse files Browse the repository at this point in the history
  • Loading branch information
lucc committed Aug 10, 2024
1 parent b40e26c commit d6aedec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/source/api/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def __getattr__(cls, name):
autodoc_member_order = 'bysource'
autoclass_content = 'both'
intersphinx_mapping = {
'python': ('https://docs.python.org/3.8', None),
'notmuch': ('https://packages.python.org/notmuch', None),
'urwid': ('https://urwid.readthedocs.org/en/latest', None),
'python': ('https://docs.python.org/', None),
'notmuch': ('https://notmuch.readthedocs.org/en/latest/', None),
'urwid': ('https://urwid.readthedocs.org/en/latest/', None),
}
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'https://docs.python.org/': None,
'https://notmuch.readthedocs.org/en/latest/': None,
'https://urwid.readthedocs.org/en/latest/': None
'python': ('https://docs.python.org/', None),
'notmuch': ('https://notmuch.readthedocs.org/en/latest/', None),
'urwid': ('https://urwid.readthedocs.org/en/latest/', None),
}

0 comments on commit d6aedec

Please sign in to comment.