From b2210d171fe19bd88eaf602258fcc8c40e3dadef Mon Sep 17 00:00:00 2001 From: wiredfool Date: Tue, 18 Feb 2025 19:52:45 +0000 Subject: [PATCH] mac/linux: install binary only pyarrow, and don't fail if there's no binary --- .ci/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/install.sh b/.ci/install.sh index 3543d3da6..60f012026 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -36,7 +36,9 @@ python3 -m pip install -U pytest python3 -m pip install -U pytest-cov python3 -m pip install -U pytest-timeout python3 -m pip install pyroma -python3 -m pip install pyarrow +# optional test dependency, only install if there's a binary package. +# fails on beta 3.14 and pypy3.10 +python3 -m pip install --only-binary=:all: pyarrow || true if [[ $(uname) != CYGWIN* ]]; then python3 -m pip install numpy