Sylvain Marié
Sylvain Marié
I realize that this sphinx version was old. I'll check with 8.2.3
I confirm that this bug also happens with version v8.2.3.
Thanks @electric-coder . So you are confirming that there is no solution as of today, apart from manually listing the content of the doc for each enum. Unless maybe `autodoc-process-bases`...
Thanks @electric-coder . The issue also exists in version 8.2.3, I tested.
Full traceback : ```python Traceback (most recent call last): File "C:\\.nox\doc\Lib\site-packages\sphinx\events.py", line 404, in emit results.append(listener.handler(self.app, *args)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\\.nox\doc\Lib\site-packages\sphinx\ext\intersphinx\_load.py", line 187, in load_mappings updated = [f.result() for f in...
I agree with @FraDV0695 : when using `autodoc_pydantic` indirectly (through execution of [`autosummary`](https://www.sphinx-doc.org/en/master/usage/extensions/autosummary.html#directive-autosummary)), then the proposed workaround to declare `:inherited-members: BaseModel` does not work because `autosummary` does not propagate the...
I found the solution : in conf.py, simply do ```python autodoc_default_options = {"inherited-members": "BaseModel", ...} ``` Note that you can even specify several base classes separated by coma.
+1 (with pandera 0.24 and 0.26)
Hello @majidaldo , thanks for opening an issue ! From the title, this seems to be a feature request. Could you please provide an example script of how you would...