Skip to content

Commit

Permalink
Fix sphinx builds (#1135)
Browse files Browse the repository at this point in the history
Sphinx's required configuration changed.
  • Loading branch information
manthey authored Oct 7, 2024
1 parent d705701 commit e2d8843
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
# texinfo_no_detailmenu = False

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'http://docs.python.org/': None,
'http://docs.scipy.org/doc/numpy/': None,
'http://docs.scipy.org/doc/scipy/reference': None}
intersphinx_mapping = {'python': ('http://docs.python.org/', None),
'numpy': ('http://docs.scipy.org/doc/numpy/', None),
'scipy': ('http://docs.scipy.org/doc/scipy/reference', None)}
intersphinx_cache_limit = 10 # days to keep the cached inventories

0 comments on commit e2d8843

Please sign in to comment.