From dfe41a1468b0c9a662a739d8bd300685a1c0db60 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 d55085698..261d50b67 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -99,7 +99,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 68d6f6e8b..2e039fdea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ [project.optional-dependencies] docs = ["Sphinx>=1.8"] export_mpl = ["matplotlib>=1.3", "pillow>2.6"] -matrix_mkl = ["mkl<2024"] +matrix_mkl = ["mkl"] matrix_scipy = ["scipy>=0.13"] import_gmsh = ["meshio"]