Blacklist `sphinxprettysearchresults` in the extension registry (#11926)

This commit is contained in:
James Addison 2024-02-02 12:09:16 +00:00 committed by GitHub
parent aff95789ac
commit 11d522a097
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,9 @@ Bugs fixed
Patch by Colin Marquardt.
* #11598: Do not use query components in URLs for assets in EPUB rendering.
Patch by David Runge.
* #11925: Blacklist the ``sphinxprettysearchresults`` extension; the functionality
it provides was merged into Sphinx v2.0.0.
Patch by James Addison.
Testing
-------

View File

@ -52,6 +52,7 @@ logger = logging.getLogger(__name__)
# Values are Sphinx version that merge the extension.
EXTENSION_BLACKLIST = {
"sphinxjp.themecore": "1.2",
"sphinxprettysearchresults": "2.0.0",
}