From af3fe2ddf54b788e240d4c0a221f4f20759e1d94 Mon Sep 17 00:00:00 2001 From: Ben Greiner Date: Mon, 23 Dec 2024 14:47:16 +0100 Subject: [PATCH] macos runners are now arm64. There is no Intel MKL on Arm --- .github/scripts/set-conda-test-matrix.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/scripts/set-conda-test-matrix.py b/.github/scripts/set-conda-test-matrix.py index 954480cb..2e0b9568 100644 --- a/.github/scripts/set-conda-test-matrix.py +++ b/.github/scripts/set-conda-test-matrix.py @@ -10,10 +10,8 @@ 'win': 'windows', } -blas_implementations = ['unset', 'Generic', 'OpenBLAS', 'Intel10_64lp'] - -combinations = {'ubuntu': blas_implementations, - 'macos': blas_implementations, +combinations = {'ubuntu': ['unset', 'Generic', 'OpenBLAS', 'Intel10_64lp'], + 'macos': ['unset', 'Generic', 'OpenBLAS'], 'windows': ['unset', 'Intel10_64lp'], }