From dd201d444e555c2940f85dbc1a3e2bc727f86690 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 15 Apr 2022 14:22:03 -0400 Subject: [PATCH] sphinx conf tweaks don't put args on the class itself, as it seems to be using __new__ in some cases which is ugly get new zzzeeksphinx built Change-Id: Ib1453646329569eacd282825588292b451a80f68 --- doc/build/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/build/conf.py b/doc/build/conf.py index 10c9c98d4e..037c93bb71 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -111,6 +111,9 @@ changelog_render_changeset = "https://www.sqlalchemy.org/trac/changeset/%s" exclude_patterns = ["build", "**/unreleased*/*", "*_include.rst"] +autodoc_class_signature = "separated" +autodoc_typehints_format = "short" + # zzzeeksphinx makes these conversions when it is rendering the # docstrings classes, methods, and functions within the scope of # Sphinx autodoc -- 2.47.2