Skip to content

Commit 309a49d

Browse files
committed
Use Intel channel when building Linux conda package
This pulls in 2025.1 instead of 2025.0 since 2025.1 is not available on conda-forge
1 parent a391844 commit 309a49d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ jobs:
5959
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE${{ runner.os == 'Linux' && '/' || '\\' }}" >> $GITHUB_ENV
6060
- name: Build conda package
6161
run: |
62-
# use bootstrap channel to pull NumPy linked with OpenBLAS
63-
CHANNELS="-c conda-forge --override-channels"
62+
# use bootstrap channel to pull NumPy linked with
63+
# TODO: roll back use of Intel channel when 2025.1 is available on conda-forge
64+
CHANNELS="-c ${{ env.INTEL_CHANNEL }} -c conda-forge --override-channels"
6465
VERSIONS="--python ${{ matrix.python }} --numpy 2.0"
6566
TEST="--no-test"
6667
conda build \

0 commit comments

Comments
 (0)