This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v1.4.0-rc1 in repository https://gitbox.apache.org/repos/asf/fory.git
commit bfe09c424b9d7a5b28111c9e62a0fac52aa4b55a Author: chaokunyang <[email protected]> AuthorDate: Fri Jul 17 00:27:54 2026 +0800 ci(python): pin PyArrow for manylinux2014 --- ci/deploy.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ci/deploy.sh b/ci/deploy.sh index fbd5090a1..6e2e9a953 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -150,7 +150,12 @@ build_pyfory() { } install_pyarrow() { - $PIP_CMD install pyarrow numpy + # Newer PyArrow and NumPy Linux wheels require manylinux_2_28. + if [[ ${PLAT:-} == manylinux2014_* ]]; then + $PIP_CMD install "pyarrow<21" "numpy<2.3" + else + $PIP_CMD install pyarrow numpy + fi } deploy_scala() { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
