diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-04-15 14:22:03 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-04-15 14:22:03 -0400 |
commit | dd201d444e555c2940f85dbc1a3e2bc727f86690 (patch) | |
tree | 78ac1f47b3670d9b76baecf39ecd97d5a05e520f | |
parent | 262c5a6fe10b57cba763857803699eb24fc5d20c (diff) | |
download | sqlalchemy-dd201d444e555c2940f85dbc1a3e2bc727f86690.tar.gz |
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
-rw-r--r-- | doc/build/conf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/build/conf.py b/doc/build/conf.py index 10c9c98d4..037c93bb7 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 |