Closed 12rambau closed 1 year ago
Thanks for reporting, I can confirm that this is a bug.
the error was coming from me. I stopped using the make html
command from docs source but instead used sphinx-build -b html docs/source build
from the repository root. As the outputdir is automatically deteted from your side it wasn't working:
https://github.com/jupyter/jupyter-sphinx/blob/1bb7d916d8ade01ce30d74cdf6cf343bec6236ec/jupyter_sphinx/utils.py#L91
Now that I run the more appropriate:
sphinx-build -b html docs/source docs/build/html
It works as expected.
Sorry for the noise
I run the following code to build my documentation:
and in one of my file there is the following cell to execute:
For a reason I can't explain building the documentation creates a
jupyter_execute
folder at the root of my lib. Am I missing a parameter or is it a bug ? I would expect this to end-up in thebuild
folder.If an example is needed, you can find the example here: https://github.com/12rambau/pygadm