Work around Sphinx failing to resolve HttpRequest in type annotations

Fixes #12777
pull/12772/head
Matt Westcott 2025-01-16 16:00:14 +00:00
rodzic c561977e8d
commit b2958e2b4c
1 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -72,8 +72,7 @@ autodoc_type_aliases = {
nitpick_ignore = [
# Sphinx currently cannot resolve type hint names, warns "target not found":
("py:class", "wagtail.images.models.Filter"),
("py:class", "HttpRequest"),
("py:class", "RouteResult"),
("py:class", "wagtail.url_routing.RouteResult"),
("py:class", "wagtail.blocks.base.Block"),
("py:class", "wagtail.blocks.field_block.BaseChoiceBlock"),
("py:class", "wagtail.blocks.field_block.ChooserBlock"),
@ -400,3 +399,9 @@ def setup(app):
rolename="lookup",
indextemplate="pair: %s; field lookup type",
)
# Stop Sphinx from looking in the wrong place for HttpRequest when resolving
# type annotations - see https://github.com/wagtail/wagtail/pull/12777
from django.http import HttpRequest
HttpRequest.__module__ = "django.http"