From 41b8af10e545146a090d79e4e43beba51a8d7c53 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 8 Nov 2024 11:30:18 -0500 Subject: [PATCH] Show inheritance in inlined classes in docs (#709) (#712) This was an oversight. We already show inheritance for dedicated class pages from `.. autosummary::`, but not inlined classes from `.. autodoc::`. (cherry picked from commit 4ba61b422f52f699e57efcc4ac686fa31dc68f45) Co-authored-by: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 7278984c..7cddbba9 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