File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99### Added
1010
1111### Changed
12+ * Removed ` numpy-base ` dependency and ` USE_NUMPY_BASE ` environment variable from conda recipe [ gh-124 ] ( https://github.com/IntelPython/mkl_random/pull/124 )
1213
1314### Fixed
1415
Original file line number Diff line number Diff line change 1- # Intel numpy-base is still needed for internal wheels CI, so we control its use with this optional toggle
2- {% set use_numpy_base = environ.get('USE_NUMPY_BASE', 'true').lower() == 'true' %}
3-
41package :
52 name : mkl_random
63 version : {{ GIT_DESCRIBE_TAG }}
@@ -26,22 +23,14 @@ requirements:
2623 - setuptools >=77
2724 - mkl-devel
2825 - cython
29- {% if use_numpy_base %}
30- - numpy-base
31- {% else %}
3226 - numpy
33- {% endif %}
3427 - pip
3528 - wheel >=0.41.3
3629 run :
3730 - python
3831 - python-gil # [py>=314]
3932 - {{ pin_compatible('mkl', min_pin="x.x", max_pin="x") }}
40- {% if use_numpy_base %}
41- - numpy-base
42- {% else %}
4333 - numpy >=1.26.4
44- {% endif %}
4534
4635test :
4736 commands :
You can’t perform that action at this time.
0 commit comments