This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 8826789  ARROW-4273: [Release] Fix verification script to use cf201901 
conda-forge label
8826789 is described below

commit 88267899d6820b74ec78d28ed8aa2fddc527c22c
Author: Krisztián Szűcs <[email protected]>
AuthorDate: Wed Jan 16 12:54:23 2019 +0100

    ARROW-4273: [Release] Fix verification script to use cf201901 conda-forge 
label
    
    Author: Krisztián Szűcs <[email protected]>
    
    Closes #3413 from kszucs/conda-label and squashes the following commits:
    
    60d0fb08 <Krisztián Szűcs> add conda label, verification was failing on OSX
---
 dev/release/verify-release-candidate.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index 28fb1e5..de7dc18 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -179,12 +179,13 @@ setup_miniconda() {
 
   . $MINICONDA/etc/profile.d/conda.sh
 
-  conda create -n arrow-test -y -q python=3.6 \
+  conda create -n arrow-test -y -q -c conda-forge/label/cf201901 \
+        python=3.6 \
         nomkl \
         numpy \
         pandas \
         six \
-        cython -c conda-forge
+        cython
   conda activate arrow-test
 }
 

Reply via email to