Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upPut all build-generated artefacts on built #49
Comments
|
The documentation should be built into I have no idea why you are seeing things in $ make clean html singlehtml
$ find . -name 'build'
$ find . -name 'sphinx'
$ find . -name '_build' |
|
Oh, you are right, Only way to get the build directory now is |
|
No probs, probably an artifact of all the stuff I moved, good old |
I noticed that when I run
make html singlehtml, the documentation appears to be generated underbuild/sphinxdirectory, but it looks like it also creates some directories under thedoc.If we run
python setup.py bdist, then the bdist distribution package would go underbuild/bdist.linux-x86_64or so. Since we have thesphinxfolder being created underbuild, andsetuptoolsis using that directory as well, then maybe we could stop usingdoctoo?Or is there a reason for the need of another folder for building the documentation?