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

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


The following commit(s) were added to refs/heads/main by this push:
     new 3ce9e1df32 GH-36756: [CI][Python] Install Cython < 3.0 on 
verify-release-candidate script (#36757)
3ce9e1df32 is described below

commit 3ce9e1df3203b841c8e7815cc10e055ca97760cf
Author: Raúl Cumplido <[email protected]>
AuthorDate: Wed Jul 19 09:34:04 2023 +0200

    GH-36756: [CI][Python] Install Cython < 3.0 on verify-release-candidate 
script (#36757)
    
    ### Rationale for this change
    
    Some of our verification tasks fail for 13.0.0
    
    ### What changes are included in this PR?
    
    Pin Cython to be less than 3.0
    
    ### Are these changes tested?
    
    Archery
    
    ### Are there any user-facing changes?
    
    No
    * Closes: #36756
    
    Authored-by: Raúl Cumplido <[email protected]>
    Signed-off-by: Joris Van den Bossche <[email protected]>
---
 dev/release/verify-release-candidate.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index 8c5de9bda8..ce31b497c1 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -665,7 +665,7 @@ test_python() {
   show_header "Build and test Python libraries"
 
   # Build and test Python
-  maybe_setup_virtualenv cython numpy setuptools_scm setuptools || exit 1
+  maybe_setup_virtualenv "cython<3" numpy setuptools_scm setuptools || exit 1
   maybe_setup_conda --file ci/conda_env_python.txt || exit 1
 
   if [ "${USE_CONDA}" -gt 0 ]; then

Reply via email to