From c6032cde33401d38f23c4611f77935180011c250 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 4 Feb 2024 20:32:49 +0100 Subject: [PATCH] Don't try to build Shapely on armhf (#678) --- .github/workflows/wheels.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 28b3c5c5..497f1c96 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -69,6 +69,13 @@ jobs: run: | touch .env_file + - name: (Un)comment packages + run: | + # Some packages are not buildable on armhf anymore + if [ "${{ matrix.arch }}" = "armhf" ]; then + sed -i "s|Shapely|# Shapely|g" requirements.txt + fi + - name: Build wheels uses: home-assistant/wheels@2024.01.0 with: