-
-
Notifications
You must be signed in to change notification settings - Fork 11k
DOC,BLD: pin sphinx to <3.0 in doc_requirements.txt #16216
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
Conversation
Attempting to build with Sphinx 3 raises a lot of warnings, particularly re: the documentation for the C components. Pinning to sphinx 2 until this is resolved.
Mind giving an example of some of the warnings? |
Putting together a trimmed build log now to be included in an issue, but here's a short sample:
|
So, this section: https://github.com/numpy/numpy/blob/master/doc/source/reference/c-api/array.rst#from-other-objects I think the issue is that those constants are nested under a function declaration, so it tries to reference an inner scope. |
Could be... it looks like Sphinx made some intentionally breaking changes to their |
The two main warnings seem to be |
Opened an issue with the full log: #16217 |
Seems harmless to put this in until the problem is fixed. |
Thanks Ross. |
Thanks for filing the follow up too! |
Attempting to build the docs with Sphinx 3 raises a lot of warnings, particularly
re: the documentation for the C components. Pinning to sphinx 2 until
this is resolved.