📝🔥 Remove the `:bpo:` RST role declaration

BPO is in read-only mode and all issues have been migrated to GitHub.
This patch replaces the use of that role with `:issue:`, recently
integrated via #12522. It also disables the built-in `extlinks` Sphinx
extension, as it's no longer in use.
This commit is contained in:
Sviatoslav Sydorenko 2024-06-26 14:16:30 +02:00
parent 53bf188999
commit 29e4b6b9f0
No known key found for this signature in database
GPG Key ID: 9345E8FEA89CA455
2 changed files with 3 additions and 7 deletions

View File

@ -3360,7 +3360,9 @@ Bug Fixes
- :issue:`5914`: pytester: fix :py:func:`~pytest.LineMatcher.no_fnmatch_line` when used after positive matching.
- :issue:`6082`: Fix line detection for doctest samples inside :py:class:`python:property` docstrings, as a workaround to :bpo:`17446`.
- :issue:`6082`: Fix line detection for doctest samples inside
:py:class:`python:property` docstrings, as a workaround to
:issue:`python/cpython#61648`.
- :issue:`6254`: Fix compatibility with pytest-parallel (regression in pytest 5.3.0).

View File

@ -82,7 +82,6 @@ extensions = [
"pygments_pytest",
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.extlinks",
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
@ -171,11 +170,6 @@ linkcheck_ignore = [
linkcheck_workers = 5
extlinks = {
"bpo": ("https://bugs.python.org/issue%s", "bpo-%s"),
}
nitpicky = True
nitpick_ignore = [
# TODO (fix in pluggy?)