You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the new version v3.4.0 I get the following exception: Handler <function run_autoapi at 0x000001D6B2733920> for event 'builder-inited' threw an exception (exception: Inference failed for all members of [<Call l.3 at 0x1d6b47a4c50>].)
I created a simple test scenario:
file foo.py:
fromblaimport*k=MyBla()
file bla.py:
classMyBla:
pass
conf.py:
project="Test"copyright="Mycopyright"author="Myself"extensions= [
"sphinx.ext.todo",
"sphinx.ext.intersphinx",
"sphinx.ext.autodoc",
"autoapi.extension",
]
templates_path= ["_templates"]
exclude_patterns= ["_build", "Thumbs.db", ".DS_Store"]
autoapi_dirs= [".."]
autoapi_options= [
"members",
"undoc-members",
"show-inheritance",
"show-module-summary",
"imported-members",
]
autodoc_typehints="description"autodoc_typehints_format="short"# Add linebreaks to long functions with multiple arguments:python_maximum_signature_line_length=120# Prevents long type hints:python_use_unqualified_type_names=True# Prevents long import paths:add_module_names=False# This is the default but it's good to make it explicit in case of an update:autoapi_root="autoapi"autoapi_member_order="alphabetical"
All files are stored in the same directory.
The sphinx command is this: sphinx-build -M html . build/
Fails on Windows10 and on Ubuntu for me.
v3.3.3 worked fine
The text was updated successfully, but these errors were encountered:
cglukas
changed the title
Infere
Inference failed for relative "star" imports
Dec 2, 2024
With the new version v3.4.0 I get the following exception:
Handler <function run_autoapi at 0x000001D6B2733920> for event 'builder-inited' threw an exception (exception: Inference failed for all members of [<Call l.3 at 0x1d6b47a4c50>].)
I created a simple test scenario:
file foo.py:
file bla.py:
conf.py:
All files are stored in the same directory.
The sphinx command is this:
sphinx-build -M html . build/
Fails on Windows10 and on Ubuntu for me.
v3.3.3 worked fine
The text was updated successfully, but these errors were encountered: