From a6123524a3e2584058004f95ca8d17c648598d71 Mon Sep 17 00:00:00 2001 From: Philippe Mallet-Ladeira Date: Wed, 18 Dec 2024 17:05:36 +0100 Subject: [PATCH] fix(doc): disable warning about multiple references it might be a bug of autoapi: https://github.com/sphinx-doc/sphinx/issues/4961#issuecomment-1269463169 --- docs/source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 73b08c5..222bb84 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -73,6 +73,7 @@ "show-module-summary", "special-members", ] +suppress_warnings = ["ref.python"] # Add any paths that contain templates here, relative to this directory.cd templates_path = ["_templates"]