Skip to content

Commit 217fc26

Browse files
Use NumPy from bootstrap channel
This work-around a problem where NumPy from intel channel installs dpcpp-cpp-rt from prior version of the compiler.
1 parent 6942855 commit 217fc26

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
@@ -48,8 +48,9 @@ jobs:
4848
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE${{ runner.os == 'Linux' && '/' || '\\' }}" >> $GITHUB_ENV
4949
- name: Build conda package
5050
run: |
51-
CHANNELS="-c intel/label/validation -c intel -c conda-forge --override-channels"
52-
VERSIONS="--python ${{ matrix.python }}"
51+
# use bootstrap channel to pull NumPy linked with OpenBLAS
52+
CHANNELS="-c dppy/label/bootstrap -c intel/label/validation -c intel -c conda-forge --override-channels"
53+
VERSIONS="--python ${{ matrix.python }} --numpy 1.23"
5354
TEST="--no-test"
5455
conda build \
5556
$TEST \

0 commit comments

Comments
 (0)