Skip to content

Commit

Permalink
remove MKL version restriction (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
joostvanzwieten committed Apr 11, 2024
2 parents 81d031d + a922170 commit 510a284
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,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
Expand Down
2 changes: 1 addition & 1 deletion nutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'Numerical Utilities for Finite Element Analysis'

__version__ = version = '9a25'
__version__ = version = '9a26'
version_name = 'jook-sing'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down

0 comments on commit 510a284

Please sign in to comment.