Skip to content

Commit b19e41f

Browse files
committed
alter conditionals
1 parent ee94110 commit b19e41f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ jobs:
4747
4848
- name: Install MKL solver interface
4949
# Don't run this on the osx-arm images.
50-
if: not(${{ runner.os == 'macOS'}} and contains(runner.arch, 'ARM'))
50+
if: $${ !(runner.os == 'macOS' and contains(runner.arch, 'ARM')) }}
5151
run:
5252
conda install --quiet --yes -c conda-forge pydiso
5353

5454
- name: Install MUMPS solver interface
55-
if: ${{matrix.python-major-version >= 3}} and ${{ matrix.python-minor-version >= 9}}
55+
if: ${{ (matrix.python-major-version >= 3) and (matrix.python-minor-version >= 9) }}
5656
run:
5757
conda install --quiet --yes -c conda-forge python-mumps
5858

0 commit comments

Comments
 (0)