Skip to content

Commit

Permalink
docs formatting for sphinx 8.x (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns authored Oct 2, 2024
1 parent bfd5b87 commit cd6990b
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import os
from datetime import datetime
import sys
sys.path.insert(0, os.path.abspath('../..'))
scripts = os.path.abspath('../../scripts')
sys.path.insert(0, scripts)
try:
Expand Down Expand Up @@ -248,14 +249,14 @@


# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/3/': None}
# {'python': {'https://docs.python.org/': None},
# 'mystic': {'https://mystic.readthedocs.io/en/latest/', None},
# 'pyina': {'https://pyina.readthedocs.io/en/latest/', None},
# 'pox': {'https://pox.readthedocs.io/en/latest/', None},
# 'dill': {'https://dill.readthedocs.io/en/latest/', None},
# 'multiprocess': {'https://multiprocess.readthedocs.io/en/latest/', None},
# 'ppft': {'https://ppft.readthedocs.io/en/latest/', None},
# 'klepto': {'https://klepto.readthedocs.io/en/latest/', None},
# }
intersphinx_mapping = {
'python': ('https://docs.python.org/', None),
# 'mystic': ('https://mystic.readthedocs.io/en/latest/', None),
# 'pox': ('https://pox.readthedocs.io/en/latest/', None),
# 'dill': ('https://dill.readthedocs.io/en/latest/', None),
# 'multiprocess': ('https://multiprocess.readthedocs.io/en/latest/', None),
# 'ppft': ('https://ppft.readthedocs.io/en/latest/', None),
# 'klepto': ('https://klepto.readthedocs.io/en/latest/', None),
# 'pyina': ('https://pyina.readthedocs.io/en/latest/', None),
}

0 comments on commit cd6990b

Please sign in to comment.