Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ jobs:
with:
miniforge-variant: Miniforge3
miniforge-version: latest
activate-environment: build
auto-activate: true
activate-environment: base
channels: conda-forge
conda-remove-defaults: true
python-version: ${{ matrix.python }}

- name: Install conda build
run: |
conda activate
conda install -y conda-build
conda install -n base -y conda-build
conda list -n base

- name: Cache conda packages
Expand All @@ -133,7 +133,6 @@ jobs:
env:
OVERRIDE_INTEL_IPO: 1 # IPO requires more resources that GH actions VM provides
run: |
conda activate
# TODO: roll back use of Intel channel when 2025.1 is available on conda-forge
conda build --no-test --python ${{ matrix.python }} --numpy 2.0 -c ${{ env.INTEL_CHANNEL }} -c conda-forge --override-channels conda-recipe

Expand Down Expand Up @@ -484,8 +483,8 @@ jobs:
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: true
auto-activate-base: true
activate-environment: ""
auto-activate: true
activate-environment: base

- name: Install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels
Expand Down
Loading