From c24cacf40fd49957cef2f318850294587d2e9b73 Mon Sep 17 00:00:00 2001 From: Sergey Pokhodenko Date: Thu, 24 Oct 2019 10:11:30 +0300 Subject: [PATCH 1/2] Use Jinja2 templates in hpat-conda-recipe --- buildscripts/hpat-conda-recipe/meta.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/buildscripts/hpat-conda-recipe/meta.yaml b/buildscripts/hpat-conda-recipe/meta.yaml index a3877c641..f86e7db3d 100644 --- a/buildscripts/hpat-conda-recipe/meta.yaml +++ b/buildscripts/hpat-conda-recipe/meta.yaml @@ -1,3 +1,6 @@ +{% set PYARROW_VERSION = ">=0.14.0,<0.15.0a0" %} +{% set ARROW_CPP_VERSION = ">=0.14.0,<0.15.0a0" %} + package: name: hpat version: {{ GIT_DESCRIBE_TAG }} @@ -26,8 +29,8 @@ requirements: - numba ==0.45 - numpy - pandas >=0.23 - - pyarrow ==0.14.1 - - arrow-cpp ==0.14.1 + - pyarrow {{ PYARROW_VERSION }} + - arrow-cpp {{ ARROW_CPP_VERSION }} - boost - hdf5 - h5py @@ -41,8 +44,8 @@ requirements: - python - {{ pin_compatible('numpy') }} - pandas >=0.23 - - pyarrow ==0.14.1 - - arrow-cpp ==0.14.1 + - pyarrow {{ PYARROW_VERSION }} + - arrow-cpp {{ ARROW_CPP_VERSION }} - boost - numba ==0.45 - mpich # [not win] From 5b2972e212ba8e7361596e87767be6eb388db8f0 Mon Sep 17 00:00:00 2001 From: Sergey Shalnov Date: Fri, 25 Oct 2019 16:59:55 -0500 Subject: [PATCH 2/2] set version to ==0.15.0 --- buildscripts/hpat-conda-recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildscripts/hpat-conda-recipe/meta.yaml b/buildscripts/hpat-conda-recipe/meta.yaml index f44185ec2..5b7b4622c 100644 --- a/buildscripts/hpat-conda-recipe/meta.yaml +++ b/buildscripts/hpat-conda-recipe/meta.yaml @@ -1,5 +1,5 @@ -{% set PYARROW_VERSION = ">=0.14.0,<0.15.0a0" %} -{% set ARROW_CPP_VERSION = ">=0.14.0,<0.15.0a0" %} +{% set PYARROW_VERSION = "==0.15.0" %} +{% set ARROW_CPP_VERSION = "==0.15.0" %} package: name: hpat