From 4ba61b422f52f699e57efcc4ac686fa31dc68f45 Mon Sep 17 00:00:00 2001 From: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Date: Fri, 8 Nov 2024 04:42:46 -0500 Subject: [PATCH] Show inheritance in inlined classes in docs (#709) This was an oversight. We already show inheritance for dedicated class pages from `.. autosummary::`, but not inlined classes from `.. autodoc::`. --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index a68d764b..6baf20de 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -90,6 +90,7 @@ autodoc_typehints = "description" autodoc_default_options = { "inherited-members": None, + "show-inheritance": True, } napoleon_google_docstring = True napoleon_numpy_docstring = False