-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
spin document build problems #24713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
The first sphinx complaint looks fixable by copying |
That command is for regular building of the html docs. I believe the release command was always build/dist.tar.gz: real-dist
real-dist: html-build
cp -r build/html build/dist
cd build/html && zip -9r ../dist/numpy-html.zip .
cd build/dist && tar czf ../dist.tar.gz *
chmod ug=rwX,o=rX -R build/dist
find build/dist -type d -print0 | xargs -0r chmod g+s I can have a look at integrating it into the I'll have a look at fixing up the warnings as well. |
Explain how to build a zipfile of the html docs for release purposes. Remove --install-deps, as that is bad practice and `pip` invocations for dependencies should not be present in this CLI. Closes numpygh-24713
Sounds good. The EDIT: For now we could just fix the Makefile so that |
See my linked PR. For
Hmm, I wasn't planning on touching that. Translating the Makefile line by line into Python code in |
The important documentation is |
Most of it is never used, all we need is the ability to make docs. |
Maybe let's just delete the parts we don't need for now?
Ah, I forgot. Would be nice if we'd delete |
Explain how to build a zipfile of the html docs for release purposes. Remove --install-deps, as that is bad practice and `pip` invocations for dependencies should not be present in this CLI. Closes numpygh-24713
Running
python -m spin docs --build
The whole
random
module was taken from main, so should probably have fixes for using meson.On the plus side, the correct numpy version (1.26.0rc1) is built and used.
The text was updated successfully, but these errors were encountered: