Skip to content

Commit

Permalink
Remove deprecated autodoc_default_flags config
Browse files Browse the repository at this point in the history
  • Loading branch information
lochhh authored and jkbhagatio committed Jan 10, 2024
1 parent 97b99c2 commit 383189b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,12 @@ def get_current_release_tag():
templates_path = ["_templates"]

autosummary_generate = True
autodoc_default_flags = ["members", "inherited-members"]
autodoc_default_options = {
"members": True,
"inherited-members": True,
"show-inheritance": True,
"undoc-members": True,
}

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down

0 comments on commit 383189b

Please sign in to comment.