From 038f62ce93be1e65099f1a3f1b62543b4c153561 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Tue, 18 Feb 2025 20:08:48 +0000 Subject: [PATCH] fix macos pyarrow test install --- .github/workflows/macos-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos-install.sh b/.github/workflows/macos-install.sh index 10146cfde..1f90eb5de 100755 --- a/.github/workflows/macos-install.sh +++ b/.github/workflows/macos-install.sh @@ -26,7 +26,9 @@ python3 -m pip install -U pytest-cov python3 -m pip install -U pytest-timeout python3 -m pip install pyroma python3 -m pip install numpy -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 # extra test images pushd depends && ./install_extra_test_images.sh && popd