@@ -126,6 +126,7 @@ jobs:
126
126
activate-environment : build-env
127
127
environment-file : .github/conda-env/build-env.yml
128
128
miniforge-version : latest
129
+ channels : conda-forge,defaults
129
130
channel-priority : strict
130
131
auto-update-conda : false
131
132
auto-activate-base : false
@@ -170,7 +171,10 @@ jobs:
170
171
name : slycot-wheels
171
172
path : slycot-wheels
172
173
- id : set-matrix
173
- run : echo "matrix=$(python3 .github/scripts/set-pip-test-matrix.py)" >> $GITHUB_OUTPUT
174
+ run : |
175
+ TEMPFILE="$(mktemp)"
176
+ python3 .github/scripts/set-pip-test-matrix.py | tee $TEMPFILE
177
+ echo "matrix=$(cat $TEMPFILE)" >> $GITHUB_OUTPUT
174
178
175
179
176
180
create-conda-test-matrix :
@@ -194,7 +198,10 @@ jobs:
194
198
name : slycot-conda-pkgs
195
199
path : slycot-conda-pkgs
196
200
- id : set-matrix
197
- run : echo "matrix=$(python3 .github/scripts/set-conda-test-matrix.py)" >> $GITHUB_OUTPUT
201
+ run : |
202
+ TEMPFILE="$(mktemp)"
203
+ python3 .github/scripts/set-conda-test-matrix.py | tee $TEMPFILE
204
+ echo "matrix=$(cat $TEMPFILE)" >> $GITHUB_OUTPUT
198
205
199
206
200
207
test-wheel :
@@ -297,6 +304,7 @@ jobs:
297
304
miniforge-version : latest
298
305
activate-environment : test-env
299
306
environment-file : .github/conda-env/test-env.yml
307
+ channels : conda-forge,defaults
300
308
channel-priority : strict
301
309
auto-activate-base : false
302
310
- name : Download conda packages
0 commit comments