@@ -134,10 +134,14 @@ jobs:
134
134
fetch-depth : 0
135
135
- uses : conda-incubator/setup-miniconda@v3
136
136
with :
137
- auto-activate-base : true
137
+ miniforge-version : latest
138
138
conda-build-version : " *"
139
- activate-environment : true
139
+ activate-environment : build
140
140
python-version : ${{ matrix.python }}
141
+ channels : conda-forge,nodefaults
142
+
143
+ - name : Remove defaults channel
144
+ run : conda config --remove channels defaults
141
145
142
146
- name : Cache conda packages
143
147
uses : actions/cache@v4
@@ -180,13 +184,17 @@ jobs:
180
184
uses : actions/download-artifact@v4
181
185
with :
182
186
name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python_ver }}
187
+
183
188
- uses : conda-incubator/setup-miniconda@v3
184
189
with :
185
- auto-update-conda : true
186
- conda-build-version : ' *'
187
- miniconda-version : ' latest'
188
- activate-environment : mkl_fft_test
189
- python-version : ${{ matrix.python_ver }}
190
+ miniforge-version : latest
191
+ activate-environment : build
192
+ python-version : ${{ matrix.python }}
193
+ channels : conda-forge,nodefaults
194
+
195
+ - name : Remove defaults channel
196
+ run : conda config --remove channels defaults
197
+
190
198
- name : Create conda channel with the artifact bit
191
199
shell : cmd /C CALL {0}
192
200
run : |
0 commit comments