This is an automated email from the ASF dual-hosted git repository.
raulcd pushed a commit to branch maint-13.0.0
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/maint-13.0.0 by this push:
new 6aff23203f GH-36756: [CI][Python] Install Cython < 3.0 on
verify-release-candidate script (#36757)
6aff23203f is described below
commit 6aff23203f21c9c874b3d4c58b64d5f6fc31edf9
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