Skip to content

Commit

Permalink
[FIX] Use scipy.interpolate namespace
Browse files Browse the repository at this point in the history
Instead of the `scipy.interpolate.ndgriddata` namespace which is now deprecated.
  • Loading branch information
ghisvail authored Dec 12, 2022
1 parent 1f3068f commit 5184125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brainstat/mesh/interpolate.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from brainspace.mesh.mesh_io import read_surface
from brainspace.vtk_interface.wrappers.data_object import BSPolyData
from nilearn.datasets import load_mni152_brain_mask
from scipy.interpolate.ndgriddata import LinearNDInterpolator, NearestNDInterpolator
from scipy.interpolate import LinearNDInterpolator, NearestNDInterpolator
from scipy.spatial import cKDTree

from brainstat._typing import ArrayLike
Expand Down

0 comments on commit 5184125

Please sign in to comment.