Skip to content

Commit 8667612

Browse files
authored
MAINT: Avoid bad version for nb tests (mne-tools#11518)
1 parent 7e7d522 commit 8667612

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/linux_conda.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ jobs:
9494
use-mamba: true
9595
- shell: bash -el {0}
9696
run: |
97-
conda install -c conda-forge "vtk>=9.2=*osmesa*"
97+
# TODO: As of 2023/02/28, notebook tests need a pinned mesalib
98+
mamba install -c conda-forge "vtk>=9.2=*osmesa*" "mesalib=21.2.5"
99+
mamba list
98100
name: 'Install OSMesa VTK variant'
99101
- shell: bash -el {0}
100102
run: |

doc/install/advanced.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ MESA to render properly):
9393

9494
.. code-block:: console
9595
96-
$ conda install -c conda-forge "vtk>=9.2=*osmesa*"
96+
$ conda install -c conda-forge "vtk>=9.2=*osmesa*" "mesalib=21.2.5"
9797
9898
Using the development version
9999
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies:
3030
- imageio-ffmpeg>=0.4.1
3131
- vtk>=9.2
3232
- traitlets
33-
- pyvista>=0.32,!=0.35.2
33+
- pyvista>=0.32,!=0.35.2,!=0.38.0,!=0.38.1,!=0.38.2,!=0.38.3
3434
- pyvistaqt>=0.4
3535
- qdarkstyle
3636
- darkdetect

0 commit comments

Comments
 (0)