Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
* In `mkl_fft.fftn` and `mkl_fft.ifftn`, improved checking of the shape argument `s` to use faster direct transforms more often. This makes performance more consistent between `mkl_fft.fftn/ifftn` and `mkl.interfaces`. [gh-283](https://github.com/IntelPython/mkl_fft/pull/283)
* Made conda recipe dependency on numpy configurable through `USE_NUMPY_BASE` environment variable [gh-299](https://github.com/IntelPython/mkl_fft/pull/299)

### Removed
* Dropped support for Python 3.9 [gh-243](https://github.com/IntelPython/mkl_fft/pull/243)
Expand Down
18 changes: 17 additions & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Intel numpy-base is still needed for internal wheels CI, so we control its use with this optional toggle
{% set use_numpy_base = environ.get('USE_NUMPY_BASE', 'true').lower() == 'true' %}

package:
name: mkl_fft
version: {{ GIT_DESCRIBE_TAG }}
Expand All @@ -11,6 +14,11 @@ build:
- WHEELS_OUTPUT_FOLDER
ignore_run_exports:
- blas
{% if use_numpy_base %}
- numpy-base
{% else %}
- numpy
{% endif %}

requirements:
build:
Expand All @@ -23,13 +31,21 @@ requirements:
- setuptools >=77
- mkl-devel
- cython
{% if use_numpy_base %}
- numpy-base
{% else %}
- numpy
{% endif %}
- wheel >=0.41.3
run:
- python
- python-gil # [py>=314]
- mkl-service
- {{ pin_compatible('numpy-base') }}
{% if use_numpy_base %}
- numpy-base
{% else %}
- numpy >=1.26.4
{% endif %}

test:
commands:
Expand Down
2 changes: 1 addition & 1 deletion mkl_fft/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.2.0dev5"
__version__ = "2.2.0dev6"
Loading