We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a391844 commit 309a49dCopy full SHA for 309a49d
.github/workflows/conda-package.yml
@@ -59,8 +59,9 @@ jobs:
59
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE${{ runner.os == 'Linux' && '/' || '\\' }}" >> $GITHUB_ENV
60
- name: Build conda package
61
run: |
62
- # use bootstrap channel to pull NumPy linked with OpenBLAS
63
- CHANNELS="-c conda-forge --override-channels"
+ # use bootstrap channel to pull NumPy linked with
+ # 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"
65
VERSIONS="--python ${{ matrix.python }} --numpy 2.0"
66
TEST="--no-test"
67
conda build \
0 commit comments