Skip to content

Commit fa5216c

Browse files
committed
don't install mkl-service in pip and standard clang builds
1 parent 0474236 commit fa5216c

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/build-with-standard-clang.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ jobs:
4747

4848
- name: Install mkl_random dependencies
4949
run: |
50-
pip install meson-python ninja cmake cython mkl-service
51-
pip install mkl-devel
50+
pip install meson-python ninja cmake cython mkl-devel mkl
5251
pip install ${{ matrix.numpy_version }}
5352
5453
- name: Build mkl_random

.github/workflows/build_pip.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ jobs:
2626
use_pre: ["", "--pre"]
2727

2828
steps:
29-
- name: Install jq
30-
shell: bash -l {0}
31-
run: |
32-
sudo apt-get install jq
33-
3429
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3530
with:
3631
fetch-depth: 0
@@ -44,10 +39,7 @@ jobs:
4439

4540
- name: Install MKL
4641
run: |
47-
conda install mkl-devel mkl-service
48-
python -c "import sys; print(sys.executable)"
49-
which python
50-
python -c "import mkl; print(mkl.__file__)"
42+
conda install mkl-devel mkl
5143
5244
- name: Build conda package
5345
run: |

0 commit comments

Comments
 (0)