8000 Replace mamba with conda again · python-control/python-control@07484e5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 07484e5

Browse files
committed
Replace mamba with conda again
1 parent a2c3b4c commit 07484e5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/os-blas-test-matrix.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
auto-update-conda: false
131131
auto-activate-base: false
132132
- name: Conda build
133-
shell: bash -l {0}
133+
shell: bash -el {0}
134134
run: |
135135
set -e
136136
conda mambabuild conda-recipe
@@ -277,7 +277,7 @@ jobs:
277277

278278
defaults:
279279
run:
280-
shell: bash -l {0}
280+
shell: bash -el {0}
281281

282282
steps:
283283
- name: Checkout Slycot
@@ -309,22 +309,22 @@ jobs:
309309
set -e
310310
case ${{ matrix.blas_lib }} in
311311
unset ) # the conda-forge default (os dependent)
312-
mamba install libblas libcblas liblapack
312+
conda install libblas libcblas liblapack
313313
;;
314314
Generic )
315-
mamba install 'libblas=*=*netlib' 'libcblas=*=*netlib' 'liblapack=*=*netlib'
315+
conda install 'libblas=*=*netlib' 'libcblas=*=*netlib' 'liblapack=*=*netlib'
316316
echo "libblas * *netlib" >> $CONDA_PREFIX/conda-meta/pinned
317317
;;
318318
OpenBLAS )
319-
mamba install 'libblas=*=*openblas' openblas
319+
conda install 'libblas=*=*openblas' openblas
320320
echo "libblas * *openblas" >> $CONDA_PREFIX/conda-meta/pinned
321321
;;
322322
Intel10_64lp )
323-
mamba install 'libblas=*=*mkl' mkl
323+
conda install 'libblas=*=*mkl' mkl
324324
echo "libblas * *mkl" >> $CONDA_PREFIX/conda-meta/pinned
325325
;;
326326
esac
327-
mamba install -c ./slycot-conda-pkgs slycot
327+
conda install -c ./slycot-conda-pkgs slycot
328328
conda list
329329
- name: Test with pytest
330330
run: JOBNAME="$JOBNAME" pytest control/tests

0 commit comments

Comments
 (0)
0