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 6942855 commit 217fc26Copy full SHA for 217fc26
.github/workflows/conda-package.yml
@@ -48,8 +48,9 @@ jobs:
48
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE${{ runner.os == 'Linux' && '/' || '\\' }}" >> $GITHUB_ENV
49
- name: Build conda package
50
run: |
51
- CHANNELS="-c intel/label/validation -c intel -c conda-forge --override-channels"
52
- VERSIONS="--python ${{ matrix.python }}"
+ # use bootstrap channel to pull NumPy linked with OpenBLAS
+ CHANNELS="-c dppy/label/bootstrap -c intel/label/validation -c intel -c conda-forge --override-channels"
53
+ VERSIONS="--python ${{ matrix.python }} --numpy 1.23"
54
TEST="--no-test"
55
conda build \
56
$TEST \
0 commit comments