-
-
Notifications
You must be signed in to change notification settings - Fork 132
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
docs: scipy intersphinx links point to bad urls (404) #542
Comments
type:bug is probably not warranted. this is only an issue with the docs :) |
delgadom
added a commit
to delgadom/sparse
that referenced
this issue
Mar 27, 2022
Thanks for the issue, would you be willing to make a PR? |
Fixed in #543 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
In the sparse docs, all links to scipy documentation result in 404 errors. See for example
Landing Page
On the first line of the landing page, all pointers to the scipy API reference are broken:
Here's the corresponding section as markdown (included here only for the purpose of illustrating the URLs - I know in reality this code is written in rst with intersphinx links):
From Scipy sparse matrices
Similarly, in the section on "Construct Sparse Arrays", all references to Scipy API docs, including in the section titles, are broken:
Here's the corresponding section as markdown:
Explanation
The provided links point to
https://docs.scipy.org/doc/scipy/reference/reference/generated/...
, withreference
twice. This should simply behttps://docs.scipy.org/doc/scipy/reference/generated/...
, as in https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.spmatrix.html#scipy.sparse.spmatrixProposed Remedy
The culprit appears to be in
docs/conf.py#L188
:reference
should simply be dropped from the scipy linkThe text was updated successfully, but these errors were encountered: