From a00c882665dfed35e5a0408a0fb330afb537a650 Mon Sep 17 00:00:00 2001 From: Damien Ayers Date: Tue, 5 Nov 2024 11:34:30 +1100 Subject: [PATCH] Fix docs build - remove duplicate intersphinx entries The prefix identifier (the duplicate of which was causing the docs build to fail with recent sphinx versions), is only useful when linking to pages. It's not used when resolving packages/modules/classes, so we don't need the double ups for xr/xarray and np/numpy. --- docs/conf.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index e85be461..1ed44bbb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -84,9 +84,7 @@ "python": ("https://docs.python.org/3", None), "pyproj": ("https://pyproj4.github.io/pyproj/stable/", None), "numpy": ("https://numpy.org/doc/stable/", None), - "np": ("https://numpy.org/doc/stable/", None), "xarray": ("https://xarray.pydata.org/en/stable/", None), - "xr": ("https://xarray.pydata.org/en/stable/", None), "rasterio": ("https://rasterio.readthedocs.io/en/latest/", None), "shapely": ("https://shapely.readthedocs.io/en/latest/", None), "folium": ("https://python-visualization.github.io/folium/latest/", None),