Skip to content

Commit 3fc8fec

Browse files
committed
add mkl-devel to required packages and use optional depndencies in github work flows
1 parent c5a636c commit 3fc8fec

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/build_pip.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,9 @@ jobs:
5252
5353
- name: Build conda package
5454
run: |
55-
pip install --no-cache-dir cython pytest hypothesis
55+
pip install --no-cache-dir cython
5656
pip install --no-cache-dir numpy ${{ matrix.use_pre }}
5757
echo "CONDA_PREFFIX is '${CONDA_PREFIX}'"
5858
export MKLROOT=${CONDA_PREFIX}
59-
pip install -e . --no-build-isolation --verbose --no-deps
60-
pip install --no-cache-dir scipy
59+
pip install -e .[test] --no-build-isolation --verbose
6160
python -m pytest -v mkl_fft/tests

CHANGES.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
mkl_fft changelog
33
=================
44

5-
1.3.13
6-
======
5+
1.3.13 (03/25/2025)
6+
===================
7+
8+
Supported python versions are 3.9, 3.10, 3.11, 3.12
79

810
migrate from :code:`setup.py` to :code:`pyproject.toml`
911

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
[build-system]
2727
build-backend = "setuptools.build_meta"
28-
requires = ["setuptools>=64", "Cython", "numpy"]
28+
requires = ["setuptools>=64", "Cython", "numpy", "mkl-devel"]
2929

3030
[project]
3131
authors = [

0 commit comments

Comments
 (0)