Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
BUG: Fix DIPY doc URL in Sphinx documentation config file
Browse files Browse the repository at this point in the history
Fix DIPY doc URL in Sphinx documentation config file: the URL was
changed starting DIPY 1.8.0.

Fixes:
```
Warning, treated as error:
failed to reach any of the inventories with the following issues:
intersphinx inventory 'https://dipy.org/documentation/latest/objects.inv'
not fetchable due to
<class 'requests.exceptions.HTTPError'>: 404 Client Error:
Not Found for url: https://dipy.org/documentation/latest/objects.inv
make: *** [Makefile:65: html] Error 2
```

raised when running:
```
make -C docs/ SPHINXOPTS="-W" BUILDDIR="$HOME/docs" OUTDIR="${CURBRANCH:-html}" html
```
  • Loading branch information
jhlegarreta committed Mar 18, 2024
1 parent 8912300 commit 59a8b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
"bids": ("https://bids-standard.github.io/pybids/", None),
"dipy": ("https://dipy.org/documentation/latest/", None),
"dipy": ("https://docs.dipy.org/stable", None),
"matplotlib": ("https://matplotlib.org/stable", None),
"nibabel": ("https://nipy.org/nibabel/", None),
"nipype": ("https://nipype.readthedocs.io/en/latest/", None),
Expand Down

0 comments on commit 59a8b34

Please sign in to comment.