Skip to content

Commit

Permalink
removed last slash for intersphinx mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
TjarkMiener committed Aug 2, 2024
1 parent 98daeed commit ea058a0
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,24 +392,24 @@ def setup(app):

# Configuration for intersphinx
intersphinx_mapping = {
"astropy": ("https://docs.astropy.org/en/stable/", None),
"bokeh": ("https://docs.bokeh.org/en/latest/", None),
"cython": ("https://docs.cython.org/en/stable/", None),
"iminuit": ("https://scikit-hep.org/iminuit/", None),
"ipywidgets": ("https://ipywidgets.readthedocs.io/en/stable/", None),
"joblib": ("https://joblib.readthedocs.io/en/stable/", None),
"matplotlib": ("https://matplotlib.org/stable/", None),
"numba": ("https://numba.readthedocs.io/en/stable/", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
"psutil": ("https://psutil.readthedocs.io/en/stable/", None),
"pytables": ("https://www.pytables.org/", None),
"pytest": ("https://docs.pytest.org/en/stable/", None),
"python": ("https://docs.python.org/3/", None),
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
"setuptools": ("https://setuptools.pypa.io/en/stable/", None),
"sklearn": ("https://scikit-learn.org/stable/", None),
"traitlets": ("https://traitlets.readthedocs.io/en/stable/", None),
"astropy": ("https://docs.astropy.org/en/stable", None),
"bokeh": ("https://docs.bokeh.org/en/latest", None),
"cython": ("https://docs.cython.org/en/stable", None),
"iminuit": ("https://scikit-hep.org/iminuit", None),
"ipywidgets": ("https://ipywidgets.readthedocs.io/en/stable", None),
"joblib": ("https://joblib.readthedocs.io/en/stable", None),
"matplotlib": ("https://matplotlib.org/stable", None),
"numba": ("https://numba.readthedocs.io/en/stable", None),
"numpy": ("https://numpy.org/doc/stable", None),
"pandas": ("https://pandas.pydata.org/pandas-docs/stable", None),
"psutil": ("https://psutil.readthedocs.io/en/stable", None),
"pytables": ("https://www.pytables.org", None),
"pytest": ("https://docs.pytest.org/en/stable", None),
"python": ("https://docs.python.org/3", None),
"scipy": ("https://docs.scipy.org/doc/scipy", None),
"setuptools": ("https://setuptools.pypa.io/en/stable", None),
"sklearn": ("https://scikit-learn.org/stable", None),
"traitlets": ("https://traitlets.readthedocs.io/en/stable", None),
}


Expand Down

0 comments on commit ea058a0

Please sign in to comment.