Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.
Merged
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
11 changes: 7 additions & 4 deletions buildscripts/hpat-conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{% set PYARROW_VERSION = "==0.15.0" %}
{% set ARROW_CPP_VERSION = "==0.15.0" %}

package:
name: hpat
version: {{ GIT_DESCRIBE_TAG }}
Expand Down Expand Up @@ -26,8 +29,8 @@ requirements:
- numba ==0.46
- numpy
- pandas >=0.23
- pyarrow ==0.15.0
- arrow-cpp ==0.15.0
- pyarrow {{ PYARROW_VERSION }}
- arrow-cpp {{ ARROW_CPP_VERSION }}
- boost
- hdf5
- h5py
Expand All @@ -41,8 +44,8 @@ requirements:
- python
- {{ pin_compatible('numpy') }}
- pandas >=0.23
- pyarrow ==0.15.0
- arrow-cpp ==0.15.0
- pyarrow {{ PYARROW_VERSION }}
- arrow-cpp {{ ARROW_CPP_VERSION }}
- boost
- numba ==0.46
- mpich # [not win]
Expand Down