Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/compat_minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
run:
shell: bash
env:
CONDA_DEPENDENCIES: 'numpy scipy matplotlib'
# TODO: Revert nibabel here pending https://github.com/mne-tools/mne-python/issues/11564
CONDA_DEPENDENCIES: 'numpy scipy matplotlib nibabel'
DEPS: 'minimal'
DISPLAY: ':99.0'
MNE_DONTWRITE_HOME: true
Expand Down
5 changes: 5 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1018,6 +1018,11 @@ def reset_warnings(gallery_conf, fname):
):
warnings.filterwarnings( # deal with other modules having bad imports
'ignore', message=".*%s.*" % key, category=DeprecationWarning)
warnings.filterwarnings(
'ignore', message=(
'Matplotlib is currently using agg, which is a non-GUI backend.*'
)
)
# matplotlib 3.6 in nilearn and pyvista
warnings.filterwarnings(
'ignore', message='.*cmap function will be deprecated.*')
Expand Down
1 change: 0 additions & 1 deletion tutorials/preprocessing/25_background_filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
tutorial and read :ref:`tut-filter-resample` instead (but someday, you
should come back and read this one too 🙂).


Problem statement
=================

Expand Down