1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
From: Josenilson Ferreira da Silva <nilsonfsilva@hotmail.com>
Date: Thu, 1 May 2025 21:56:40 -0300
Subject: changed intersphinx mapping tolocal
Forwarded: not-needed
---
docs/conf.py | 22 +++++++++-------------
1 file changed, 9 insertions(+), 13 deletions(-)
Index: spopt/docs/conf.py
===================================================================
--- spopt.orig/docs/conf.py
+++ spopt/docs/conf.py
@@ -243,19 +243,15 @@ def setup(app):
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
- "geopandas": ("https://geopandas.org/en/latest/", None),
- "libpysal": ("https://pysal.org/libpysal/", None),
- "mapclassify": ("https://pysal.org/mapclassify/", None),
- "networkx": ("https://networkx.org/documentation/stable/", None),
- "numpy": ("https://numpy.org/doc/stable/", None),
- "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
- "pointpats": ("https://pysal.org/pointpats/", None),
- "pulp": ("https://coin-or.github.io/pulp/", None),
- "python": ("https://docs.python.org/3.12/", None),
- "region": ("https://region.readthedocs.io/en/latest/", None),
- "scipy": ("https://docs.scipy.org/doc/scipy/", None),
- "shapely": ("https://shapely.readthedocs.io/en/stable/", None),
- "sklearn": ("https://scikit-learn.org/stable/", None),
+ "numpy": ("/usr/share/doc/python-numpy/html/", None),
+ "pointpats": ("/usr/share/doc/python-pointpats-doc/html/", None),
+ "libpysal": ("/usr/share/doc/python-libpysal-doc/html/", None),
+ "mapclassify": ("/usr/share/doc/python-mapclassify-doc/html/", None),
+ "networkx": ("/usr/share/doc/python3-networkx/html/", None),
+ "pandas": ("/usr/share/doc/python-pandas-doc/html/", None),
+ "python": ("/usr/share/doc/python3-doc/html/", None),
+ "scipy": ("/usr/share/doc/python-scipy-doc/html/", None),
+ "sklearn": ("/usr/share/doc/python-sklearn-doc/html/", None),
}
numpydoc_xref_ignore = {
|