Skip to content

Commit bbdef36

Browse files
Implemented suggestions from @antonwolfy
1 parent 4430933 commit bbdef36

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build_pip.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,21 @@ jobs:
3434
- uses: conda-incubator/setup-miniconda@v3
3535
with:
3636
use-mamba: true
37-
mamba-version: "*"
37+
miniforge-variant: Mambaforge
38+
miniforge-version: latest
3839
channels: conda-forge
3940
activate-environment: test
4041
python-version: ${{ matrix.python }}
4142

4243
- name: Install MKL
4344
run: |
44-
conda install -c conda-forge mkl-devel mkl-service --override-channels
45-
conda activate test
45+
conda install mkl-devel mkl-service
4646
python -c "import sys; print(sys.executable)"
4747
which python
4848
python -c "import mkl; print(mkl.__file__)"
4949
5050
- name: Build conda package
5151
run: |
52-
conda activate test
5352
pip install --no-cache-dir cython pytest hypothesis
5453
pip install --no-cache-dir numpy ${{ matrix.use_pre }}
5554
echo "CONDA_PREFFIX is '${CONDA_PREFIX}'"

0 commit comments

Comments
 (0)