Skip to content

Commit 46ffe20

Browse files
committed
Another attempt
1 parent 812fec3 commit 46ffe20

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build_anaconda.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,13 @@ jobs:
4949
activate-environment: build
5050
python-version: ${{ matrix.python-version }}
5151
environment-file: environment.yml
52+
use-mamba: true
5253

53-
- name: Set up MSVC toolchain
54-
uses: ilammy/msvc-dev-cmd@v1
55-
with:
56-
arch: x64
54+
- name: Install conda-build & compilers
55+
run: |
56+
mamba install conda-build
57+
# Optional: Install compilers if your Cython build requires them
58+
mamba install {{ compiler('c') }} {{ compiler('cxx') }} cython
5759

5860
- name: Build conda package
5961
shell: bash -l {0}

0 commit comments

Comments
 (0)