File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,16 @@ jobs:
28
28
- os : macOS-latest
29
29
python-major-version : 3
30
30
python-minor-version : 8
31
+ env :
32
+ PYTHON_VERSION : ${{ matrix.python-major-version }}.${{matrix.python-minor-version}}
31
33
32
34
steps :
33
35
- uses : actions/checkout@v4
34
36
- name : Setup Conda
35
37
uses : conda-incubator/setup-miniconda@v3
36
38
with :
37
39
auto-update-conda : true
38
- python-version : ${{matrix.python-major-version }}.{{matrix.python-minor-version}
40
+ python-version : env.PYTHON_VERSION
39
41
- name : Install Base Env
40
42
run : |
41
43
conda info
45
47
46
48
- name : Install MKL solver interface
47
49
# Don't run this on the osx-arm images.
48
- if : ${{ runner.os == 'macOS'}} and ${{ 'ARM' in runner.arch}}
50
+ if : not( ${{ runner.os == 'macOS'}} and contains( 'ARM', runner.arch, 'ARM'))
49
51
run :
50
52
conda install --quiet --yes -c conda-forge pydiso
51
53
You can’t perform that action at this time.
0 commit comments