Skip to content

Commit

Permalink
docs: Update scipy intersphinx url to drop 'reference' (#1767)
Browse files Browse the repository at this point in the history
* Update scipy scipy intersphinx url to target 'https://docs.scipy.org/doc/scipy/objects.inv'
to avoid redirect from 'https://docs.scipy.org/doc/scipy/reference/'.
   - This is the result of SciPy changing the location in scipy v1.8.0.
  • Loading branch information
matthewfeickert committed Feb 8, 2022
1 parent e3d879f commit f5e8259
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def setup(app):
intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
'numpy': ('https://numpy.org/doc/stable/', None),
'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
'scipy': ('https://docs.scipy.org/doc/scipy/', None),
'matplotlib': ('https://matplotlib.org/stable/', None),
'iminuit': ('https://iminuit.readthedocs.io/en/stable/', None),
'uproot': ('https://uproot.readthedocs.io/en/latest/', None),
Expand Down
2 changes: 1 addition & 1 deletion tests/test_optim.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import numpy as np


# from https://docs.scipy.org/doc/scipy/reference/tutorial/optimize.html#nelder-mead-simplex-algorithm-method-nelder-mead
# from https://docs.scipy.org/doc/scipy/tutorial/optimize.html#nelder-mead-simplex-algorithm-method-nelder-mead
@pytest.mark.skip_pytorch
@pytest.mark.skip_pytorch64
@pytest.mark.skip_tensorflow
Expand Down

0 comments on commit f5e8259

Please sign in to comment.