diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-12 20:11:14 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-12 21:44:59 -0500 |
commit | fd59ba24e403ad4c32bd6411d9e23f50dab13987 (patch) | |
tree | f2cb78617ca52ddd0cb47e8116d02d627a18a4a4 /sites | |
parent | f1d44004c45f33d30a4fa5a9a6d20cbcade277d8 (diff) |
Modern sphinx autodoc settings
Diffstat (limited to 'sites')
-rw-r--r-- | sites/docs/conf.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sites/docs/conf.py b/sites/docs/conf.py index 4805a03c..79958e6d 100644 --- a/sites/docs/conf.py +++ b/sites/docs/conf.py @@ -10,7 +10,10 @@ from shared_conf import * extensions.extend(["sphinx.ext.autodoc"]) # Autodoc settings -autodoc_default_flags = ["members", "special-members"] +autodoc_default_options = { + "members": True, + "special-members": True, +} # Default is 'local' building, but reference the public www site when building # under RTD. |