We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee94110 commit b19e41fCopy full SHA for b19e41f
.github/workflows/python-package-conda.yml
@@ -47,12 +47,12 @@ jobs:
47
48
- name: Install MKL solver interface
49
# Don't run this on the osx-arm images.
50
- if: not(${{ runner.os == 'macOS'}} and contains(runner.arch, 'ARM'))
+ if: $${ !(runner.os == 'macOS' and contains(runner.arch, 'ARM')) }}
51
run:
52
conda install --quiet --yes -c conda-forge pydiso
53
54
- name: Install MUMPS solver interface
55
- if: ${{matrix.python-major-version >= 3}} and ${{ matrix.python-minor-version >= 9}}
+ if: ${{ (matrix.python-major-version >= 3) and (matrix.python-minor-version >= 9) }}
56
57
conda install --quiet --yes -c conda-forge python-mumps
58
0 commit comments