File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5151 "Home-page" : "https://users.aalto.fi/~vanvlm1/posthoc/python" ,
5252 "Summary" : "post-hoc modification of linear models" ,
5353 },
54+ # https://github.com/freesurfer/surfa/pull/66
55+ "surfa" : {
56+ "Home-page" : "https://github.com/freesurfer/surfa" ,
57+ "Summary" : "Utilities for medical image and surface processing." ,
58+ },
5459 # This package does not provide wheels, so don't force CircleCI to build it.
5560 # If it eventually provides binary wheels we could add it to
5661 # `tools/circleci_dependencies.sh` and remove from here.
Original file line number Diff line number Diff line change @@ -805,11 +805,11 @@ def _call_pyvista(self, rr):
805805 pdata = _surface_to_polydata (dict (rr = rr ))
806806 # PyVista 0.47+
807807 meth = (
808- self . pdata .select_interior_points
809- if hasattr (self . pdata , "select_interior_points" )
810- else self . pdata .select_enclosed_points
808+ pdata .select_interior_points
809+ if hasattr (pdata , "select_interior_points" )
810+ else pdata .select_enclosed_points
811811 )
812- out = meth (pdata , check_surface = False )
812+ out = meth (self . pdata , check_surface = False )
813813 return out ["SelectedPoints" ].astype (bool )
814814
815815 def _call_old (self , rr , n_jobs ):
You can’t perform that action at this time.
0 commit comments