Skip to content

Commit 75bdcbf

Browse files
committed
Revert Windows MKL - not supported via pkg-config on conda
MKL on Windows conda doesn't provide pkg-config files, only CMake modules which fail to detect with our current setup. Reverting both Windows matrix jobs to OpenBLAS. We still have good BLAS backend coverage: - Linux: OpenBLAS (apt) + MKL (conda dedicated workflow) - macOS: Accelerate framework - Windows: OpenBLAS (all jobs) This reverts part of commit 63f571a.
1 parent f8f7cb6 commit 75bdcbf

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/test-matrix.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,8 @@ jobs:
3434
run: |
3535
conda install -y meson ninja numpy pytest openblas pkg-config
3636
37-
- name: Install dependencies (Windows - Python 3.12 with MKL)
38-
if: runner.os == 'Windows' && matrix.python-version == '3.12'
39-
shell: bash -l {0}
40-
run: |
41-
conda install -y meson ninja numpy pytest mkl mkl-devel clang llvm-tools lld pkg-config
42-
43-
- name: Install dependencies (Windows - Python 3.13 with OpenBLAS)
44-
if: runner.os == 'Windows' && matrix.python-version == '3.13'
37+
- name: Install dependencies (Windows)
38+
if: runner.os == 'Windows'
4539
shell: bash -l {0}
4640
run: |
4741
conda install -y meson ninja numpy pytest openblas clang llvm-tools lld pkg-config

0 commit comments

Comments
 (0)