From 0411b384ddfdffba862aeac0bd41d5cdf6e1d828 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 28 Apr 2023 09:53:04 +0200 Subject: [PATCH] Fix release build for armhf, exclude pandas (#92159) --- .github/workflows/builder.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 62270a5424e..94d4128bc66 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -174,6 +174,18 @@ jobs: python -m script.gen_requirements_all fi + - name: Adjustments for armhf + if: matrix.arch == 'armhf' + run: | + # Pandas has issues building on armhf, it is expected they + # will drop the platform in the near future (they consider it + # "flimsy" on 386). The following packages depend on pandas, + # so we comment them out. + sed -i "s|env_canada|# env_canada|g" requirements_all.txt + sed -i "s|noaa-coops|# noaa-coops|g" requirements_all.txt + sed -i "s|pyezviz|# pyezviz|g" requirements_all.txt + sed -i "s|pykrakenapi|# pykrakenapi|g" requirements_all.txt + - name: Download Translations run: python3 -m script.translations download env: