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
2 changes: 1 addition & 1 deletion conda-recipe-cf/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "0.4.0dev2" %}
{% set version = "0.4.0dev3" %}
{% set buildnumber = 0 %}

package:
Expand Down
12 changes: 11 additions & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{% set use_numpy_base = environ.get('USE_NUMPY_BASE', 'true').lower() == 'true' %}

package:
name: mkl_umath
version: {{ GIT_DESCRIBE_TAG }}
Expand Down Expand Up @@ -28,14 +30,22 @@ requirements:
- python
- python-gil # [py>=314]
- mkl-devel
{% if use_numpy_base %}
- numpy-base
{% else %}
- numpy
{% endif %}
- wheel >=0.41.3
run:
- python
- python-gil # [py>=314]
- mkl-service
- {{ pin_compatible('intel-cmplr-lib-rt') }}
- {{ pin_compatible('numpy-base') }}
{% if use_numpy_base %}
- numpy-base
{% else %}
- numpy >=1.26.4
{% endif %}

test:
requires:
Expand Down
2 changes: 1 addition & 1 deletion mkl_umath/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0dev2"
__version__ = "0.4.0dev3"
Loading