We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812fec3 commit 46ffe20Copy full SHA for 46ffe20
.github/workflows/build_anaconda.yml
@@ -49,11 +49,13 @@ jobs:
49
activate-environment: build
50
python-version: ${{ matrix.python-version }}
51
environment-file: environment.yml
52
+ use-mamba: true
53
- - name: Set up MSVC toolchain
54
- uses: ilammy/msvc-dev-cmd@v1
55
- with:
56
- arch: x64
+ - name: Install conda-build & compilers
+ run: |
+ mamba install conda-build
57
+ # Optional: Install compilers if your Cython build requires them
58
+ mamba install {{ compiler('c') }} {{ compiler('cxx') }} cython
59
60
- name: Build conda package
61
shell: bash -l {0}
0 commit comments