Skip to content

Commit 6384a89

Browse files
authored
MAINT: Temporary regression workaround [circle deploy] (mne-tools#11566)
1 parent 7fb3ef2 commit 6384a89

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/compat_minimal.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
run:
2020
shell: bash
2121
env:
22-
CONDA_DEPENDENCIES: 'numpy scipy matplotlib'
22+
# TODO: Revert nibabel here pending https://github.com/mne-tools/mne-python/issues/11564
23+
CONDA_DEPENDENCIES: 'numpy scipy matplotlib nibabel'
2324
DEPS: 'minimal'
2425
DISPLAY: ':99.0'
2526
MNE_DONTWRITE_HOME: true

doc/conf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,6 +1018,11 @@ def reset_warnings(gallery_conf, fname):
10181018
):
10191019
warnings.filterwarnings( # deal with other modules having bad imports
10201020
'ignore', message=".*%s.*" % key, category=DeprecationWarning)
1021+
warnings.filterwarnings(
1022+
'ignore', message=(
1023+
'Matplotlib is currently using agg, which is a non-GUI backend.*'
1024+
)
1025+
)
10211026
# matplotlib 3.6 in nilearn and pyvista
10221027
warnings.filterwarnings(
10231028
'ignore', message='.*cmap function will be deprecated.*')

tutorials/preprocessing/25_background_filtering.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
tutorial and read :ref:`tut-filter-resample` instead (but someday, you
2323
should come back and read this one too 🙂).
2424
25-
2625
Problem statement
2726
=================
2827

0 commit comments

Comments
 (0)