Skip to content

Commit edcde38

Browse files
committed
remove copy-paste error numpy installations in workflows
1 parent d85f94c commit edcde38

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
strategy:
1616
matrix:
1717
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
18-
numpy_version: ["numpy'>=2'"]
1918

2019
env:
2120
ONEAPI_ROOT: /opt/intel/oneapi
@@ -57,7 +56,6 @@ jobs:
5756
- name: Install mkl-service dependencies
5857
run: |
5958
pip install meson-python cython cmake ninja
60-
pip install ${{ matrix.numpy_version }}
6159
6260
- name: List oneAPI folder content
6361
run: ls ${{ env.ONEAPI_ROOT }}/compiler

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
17-
numpy_version: ["numpy'>=2'"]
1817

1918
env:
2019
COMPILER_ROOT: /usr/bin
@@ -48,7 +47,6 @@ jobs:
4847
- name: Install mkl-service dependencies
4948
run: |
5049
pip install meson-python cython cmake ninja mkl-devel
51-
pip install ${{ matrix.numpy_version }}
5250
5351
- name: Build mkl-service
5452
run: |

.github/workflows/build_pip.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Editable build using pip and pre-release NumPy
1+
name: Editable build using pip
22

33
on:
44
push:
@@ -23,7 +23,6 @@ jobs:
2323
strategy:
2424
matrix:
2525
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
26-
use_pre: ["", "--pre"]
2726

2827
steps:
2928
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -44,7 +43,6 @@ jobs:
4443
- name: Build conda package
4544
run: |
4645
pip install --no-cache-dir meson-python ninja cmake cython
47-
pip install --no-cache-dir numpy ${{ matrix.use_pre }}
4846
pip install -e ".[test]" --no-build-isolation --verbose
4947
pip list
5048
python -m pytest -v mkl/tests

0 commit comments

Comments
 (0)