Skip to content

Commit

Permalink
Merge pull request #176 from jeremymanning/master
Browse files Browse the repository at this point in the history
got rid of warning message due to harmless numpy/cython issues
  • Loading branch information
jeremymanning authored Jul 28, 2018
2 parents 718ef27 + 35afad6 commit b027228
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions supereeg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#deal with numpy import warnings due to cython (https://stackoverflow.com/questions/40845304/runtimewarning-numpy-dtype-size-changed-may-indicate-binary-incompatibility)
import warnings
warnings.filterwarnings("ignore", message="numpy.dtype size changed")
warnings.filterwarnings("ignore", message="numpy.ufunc size changed")

from .brain import Brain
from .model import Model
from .nifti import Nifti
Expand Down

0 comments on commit b027228

Please sign in to comment.