Skip to content

Commit

Permalink
MAINT: Workaround hook bug (#12615)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed May 16, 2024
1 parent e43b5d8 commit 823e25d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tools/install_pre_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ echo "joblib"
pip install $STD_ARGS git+https://github.com/joblib/joblib

echo "edfio"
pip install $STD_ARGS git+https://github.com/the-siesta-group/edfio
# Disable protection for Azure, see
# https://github.com/mne-tools/mne-python/pull/12609#issuecomment-2115639369
GIT_CLONE_PROTECTION_ACTIVE=false pip install $STD_ARGS git+https://github.com/the-siesta-group/edfio

if [[ "${PLATFORM}" == "Linux" ]]; then
echo "h5io"
Expand Down
2 changes: 1 addition & 1 deletion tutorials/time-freq/50_ssvep.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def snr_spectrum(psd, noise_n_neighbor_freqs=1, noise_skip_neighbor_freqs=1):
].mean(axis=1)

fig, ax = plt.subplots(1)
ax.boxplot(window_snrs, labels=window_lengths, vert=True)
ax.boxplot(window_snrs, tick_labels=window_lengths, vert=True)
ax.set(
title="Effect of trial duration on 12 Hz SNR",
ylabel="Average SNR",
Expand Down

0 comments on commit 823e25d

Please sign in to comment.