We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeae6e7 commit 59c18dbCopy full SHA for 59c18db
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_random
5
version: {{ GIT_DESCRIBE_TAG }}
@@ -23,13 +25,21 @@ requirements:
23
25
- setuptools >=77
24
26
- mkl-devel
27
- cython
- - numpy
28
+ {% if use_numpy_base %}
29
+ - numpy-base
30
+ {% else %}
31
+ - numpy >= 1.26.4
32
+ {% endif %}
33
- pip
34
- wheel >=0.41.3
35
run:
36
- python
37
- python-gil # [py>=314]
38
39
40
41
42
43
44
test:
45
commands:
0 commit comments