Can you replace this with np.interp and remove scipy from the setup.py dependencies? You won't get the extrapolation but is this actually necessary? It would be nice to remove this heavyweight dependency (even though plenty of other DESI packages use it).
It looks like you only need scipy for 1d linear interpolation here:
Can you replace this with
np.interp
and removescipy
from thesetup.py
dependencies? You won't get the extrapolation but is this actually necessary? It would be nice to remove this heavyweight dependency (even though plenty of other DESI packages use it).