-
Notifications
You must be signed in to change notification settings - Fork 35
Change calls to _tfr_from_mt
with support for ndarrays
#286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hello ! I think the bug you mentionned from 232 is unfortunately back; when trying : I came on this error: Here is the whole traceback:ImportError Traceback (most recent call last) File ~\AppData\Local\anaconda3\envs\ngb\Lib\site-packages\mne_connectivity_init_.py:27 File ~\AppData\Local\anaconda3\envs\ngb\Lib\site-packages\mne_connectivity\decoding_init_.py:1 File ~\AppData\Local\anaconda3\envs\ngb\Lib\site-packages\mne_connectivity\decoding\decomposition.py:18 File ~\AppData\Local\anaconda3\envs\ngb\Lib\site-packages\mne_connectivity\spectral_init_.py:1 File ~\AppData\Local\anaconda3\envs\ngb\Lib\site-packages\mne_connectivity\spectral\epochs.py:28 PS: sorry not used to create issues on git, so tell me if I should put it somewhere else/bring more information ! |
Oof we should really have a CI that runs non- |
@harpine The error you encountered should be fixed if you grab the latest dev branch version. Cheers! |
Thank you both for the fast reaction time, you actually made my day, I could solve a long-lasting bug in my analysis by using version 0.8.0 !! Have a nice day :) |
Fixes #285.
_tfr_from_mt
now supports ndarray after mne-tools/mne-python#13104. Means we can avoid looping over epochs dimensions when passing in data.Also fixes a bug from #232 where
_tfr_from_mt
would be imported even when not required, making everything incompatible with MNE<1.10. Now it is only imported when required.