Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs build for Sphinx v8 #78

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 10 additions & 13 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = {'.rst': 'restructuredtext'}

# The encoding of source files.
#
Expand All @@ -62,7 +59,7 @@

# General information about the project.
project = 'zope.publisher'
copyright = '2017, Zope Community'
copyright = '2017-2024, Zope Community'
author = 'Zope Community'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -79,7 +76,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
# language = None

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down Expand Up @@ -353,13 +350,13 @@

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'https://docs.python.org/': None,
'https://zopeinterface.readthedocs.io/en/latest': None,
'https://zopeevent.readthedocs.io/en/latest/': None,
'https://zopecomponent.readthedocs.io/en/latest/': None,
'https://zopelocation.readthedocs.io/en/latest/': None,
'https://zopecontainer.readthedocs.io/en/latest/': None,
'https://zopesite.readthedocs.io/en/latest/': None,
'python': ('https://docs.python.org/', None),
'zopeinterface': ('https://zopeinterface.readthedocs.io/en/latest', None),
'zopeevent': ('https://zopeevent.readthedocs.io/en/latest/', None),
'zopecomponent': ('https://zopecomponent.readthedocs.io/en/latest/', None),
'zopelocation': ('https://zopelocation.readthedocs.io/en/latest/', None),
'zopecontainer': ('https://zopecontainer.readthedocs.io/en/latest/', None),
'zopesite': ('https://zopesite.readthedocs.io/en/latest/', None),
}

extlinks = {
Expand Down