Skip to content

Commit a1c7dd5

Browse files
committed
task: remove numpy-base toggle
1 parent 58eff34 commit a1c7dd5

2 files changed

Lines changed: 1 addition & 11 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

conda-recipe/meta.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
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-
41
package:
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

4635
test:
4736
commands:

0 commit comments

Comments
 (0)