Closed alienx-zero closed 4 years ago
This has already been fixed in #7811, but it is not available in a release yet. I thought about that problem a couple of minutes ago (#8031), and I think we should really backport the fix and make a 0.20.8 hotfix release even though 0.21 is about to be released soon. @larsoner and @agramfort WDYT?
Thx, update to 0.21 manually fix it
I am not sure how trivial it will be to backport the fix, you want to give it a try @cbrnr ?
Opened in #8212, let's see how many failures we get
https://pypi.org/project/mne/0.20.8/
pip install --upgrade mne
should get it installed!
I am following the tutorials https://mne.tools/stable/auto_tutorials/intro/plot_10_overview.html#sphx-glr-auto-tutorials-intro-plot-10-overview-py. And in the line
raw.plot(duration=5, n_channels=30)
, console reported thatValueError: The number of FixedLocator locations (10), usually from a call to set_ticks, does not match the number of ticklabels (1)
.And the main problem is from the sentence
ax.set_yticklabels(['X' * max([len(ch) for ch in info['ch_names']])])
inraw.py
. The number of yticklabels did not match the data dimension. I hope it could be fixed in future.