diff --git a/doc/conf.py b/doc/conf.py index 31bc6933f743a9477792464625da154831a7c18a..26bf17aeb4b23abf0f4538aef97c2d73a1f54cc3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -32,3 +32,9 @@ intersphinx_mapping = { "sumpy": ("https://documen.tician.de/sumpy", None), "sympy": ("https://docs.sympy.org/latest/", None), } + +nitpick_ignore_regex = [ + # Sphinx started complaining about these in 8.2.1(-ish) + # -AK, 2025-02-24 + ["py:class", r"TypeAliasForwardRef"], +]