Skip to content

Commit

Permalink
Remove trailing / from interspinx_mapping to avoid verbose redirect…
Browse files Browse the repository at this point in the history
…ion in logs (#4661)
  • Loading branch information
abravalheri authored Sep 26, 2024
2 parents adb8374 + c328b85 commit 66a8aee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
# Allow linking objects on other Sphinx sites seamlessly:
intersphinx_mapping.update(
# python=('https://docs.python.org/3', None),
python=('https://docs.python.org/3.11/', None),
python=('https://docs.python.org/3.11', None),
# ^-- Python 3.11 is required because it still contains `distutils`.
# Just leaving it as `3` would imply 3.12+, but that causes an
# error with the cross references to distutils functions.
Expand Down Expand Up @@ -237,9 +237,9 @@
intersphinx_mapping.update({
'pip': ('https://pip.pypa.io/en/latest', None),
'build': ('https://build.pypa.io/en/latest', None),
'PyPUG': ('https://packaging.python.org/en/latest/', None),
'packaging': ('https://packaging.pypa.io/en/latest/', None),
'twine': ('https://twine.readthedocs.io/en/stable/', None),
'PyPUG': ('https://packaging.python.org/en/latest', None),
'packaging': ('https://packaging.pypa.io/en/latest', None),
'twine': ('https://twine.readthedocs.io/en/stable', None),
'importlib-resources': (
'https://importlib-resources.readthedocs.io/en/latest',
None,
Expand Down

0 comments on commit 66a8aee

Please sign in to comment.