Currently, whenever I run sphinx-build
, only when there are changes to the source files are the inline docstrings picked up and used. I've tried calling sphinx-build
with the -a
switch but this seems to have no effect.
How can I force a full rebuild of the HTML output and force autodoc execution?
It seems to work if the
-E
option is used along with-a
. I added it to thehtml
target in myMakefile
and now changes in docstrings are picked up without updating any.rst
files.