From 1bae740d17b116c2d49e338ff4e39ce1c6ea0598 Mon Sep 17 00:00:00 2001 From: Gertjan van Zwieten Date: Mon, 18 Dec 2023 12:12:15 +0100 Subject: [PATCH] Revert "set upper limit to mkl version" This reverts commit 258afac5655e98c05d9b3709efa6324dc977cde6. --- .github/workflows/test.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f3f403e13..f871394db 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -102,7 +102,7 @@ jobs: - name: Configure MKL if: ${{ matrix.matrix-backend == 'mkl' }} run: | - python -um pip install --upgrade --upgrade-strategy eager 'mkl<2024' + python -um pip install --upgrade --upgrade-strategy eager mkl python -um devtools.gha.configure_mkl - name: Test run: python -um coverage run -m unittest discover -b -q -t . -s tests diff --git a/pyproject.toml b/pyproject.toml index 90d66d321..1bbd1861b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ [project.optional-dependencies] docs = ["Sphinx >=1.8,<8"] export_mpl = ["matplotlib >=3.3,<4"] -matrix_mkl = ["mkl <2024"] +matrix_mkl = ["mkl"] matrix_scipy = ["scipy >=0.13,<2"] import_gmsh = ["meshio >=4,<6"]