mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #6568: autosummary_imported_members is not working for submodules
This commit is contained in:
parent
67651ab8ec
commit
cb856414ec
2
CHANGES
2
CHANGES
@ -77,6 +77,8 @@ Bugs fixed
|
||||
* #7023: autodoc: partial functions imported from other modules are listed as
|
||||
module members without :impoprted-members: option
|
||||
* #6889: autodoc: Trailing comma in ``:members::`` option causes cryptic warning
|
||||
* #6568: autosummary: ``autosummary_imported_members`` is ignored on generating
|
||||
a stub file for submodule
|
||||
* #7055: linkcheck: redirect is treated as an error
|
||||
|
||||
Testing
|
||||
|
@ -293,7 +293,8 @@ def generate_autosummary_docs(sources: List[str], output_dir: str = None,
|
||||
generate_autosummary_docs(new_files, output_dir=output_dir,
|
||||
suffix=suffix, warn=warn, info=info,
|
||||
base_path=base_path, builder=builder,
|
||||
template_dir=template_dir, app=app)
|
||||
template_dir=template_dir,
|
||||
imported_members=imported_members, app=app)
|
||||
|
||||
|
||||
# -- Finding documented entries in files ---------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user