From 4fe43edbd87cf667b1242b3c56541487c7e2c314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20M=C3=A5nsson?= Date: Sun, 20 Nov 2022 12:59:02 +0100 Subject: [PATCH] docs: Ignore ref.python warnings See https://github.com/sphinx-doc/sphinx/issues/4961 Change-Id: Ic545c5ba8cf853f784587a4acca4664fddf80846 --- docs/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index a7c4d50d4..be17b00fb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,6 +20,10 @@ "notfound.extension", ] +suppress_warnings = [ + "ref.python", # https://github.com/sphinx-doc/sphinx/issues/4961 +] + autodoc_member_order = "bysource" autodoc_typehints_format = "short"