We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f9e8b5 commit bbdb3d6Copy full SHA for bbdb3d6
1 file changed
conda-recipe/meta.yaml
@@ -1,3 +1,5 @@
1
+{% set use_numpy_base = environ.get('USE_NUMPY_BASE', 'true').lower() == 'true' %}
2
+
3
package:
4
name: mkl_fft
5
version: {{ GIT_DESCRIBE_TAG }}
@@ -23,13 +25,21 @@ requirements:
23
25
- setuptools >=77
24
26
- mkl-devel
27
- cython
28
+ {% if use_numpy_base %}
29
- numpy-base
30
+ {% else %}
31
+ - numpy
32
+ {% endif %}
33
- wheel >=0.41.3
34
run:
35
- python
36
- python-gil # [py>=314]
37
- mkl-service
- - {{ pin_compatible('numpy-base') }}
38
39
+ - numpy-base
40
41
+ - numpy >=1.26.4
42
43
44
test:
45
commands:
0 commit comments