From bc4fc7efbd2a8dfc1b0e28962c088eb914256803 Mon Sep 17 00:00:00 2001 From: aptalca Date: Fri, 4 Feb 2022 12:27:33 -0500 Subject: [PATCH] always compile grpcio due to pypi pushing a glibc only wheel --- Dockerfile.armhf | 2 +- README.md | 1 + readme-vars.yml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 8a9977b..d3be59b 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -84,7 +84,7 @@ RUN \ pip install ${PIPFLAGS} \ homeassistant==${HASS_RELEASE} && \ pip install ${PIPFLAGS} \ - -r requirements_all.txt && \ + -r requirements_all.txt --no-binary grpcio && \ pip install ${PIPFLAGS} \ -r https://raw.githubusercontent.com/home-assistant/docker/${HASS_BASE}/requirements.txt && \ echo "**** cleanup ****" && \ diff --git a/README.md b/README.md index 0cd76ce..df2243c 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **04.02.22:** - Always compile grpcio on arm32v7 due to pypi pushing a glibc only wheel. * **12.12.21:** - Use the new `build.yaml` to determine HA base version. * **25.09.21:** - Use the new lsio homeassistant wheel repo, instead of the HA wheels. * **13.09.21:** - Build psycopg locally as the HA provided wheel does not seem to work properly. diff --git a/readme-vars.yml b/readme-vars.yml index 2846e0b..8e9538b 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -61,6 +61,7 @@ unraid_template_sync: false # changelog changelogs: + - { date: "04.02.22:", desc: "Always compile grpcio on arm32v7 due to pypi pushing a glibc only wheel." } - { date: "12.12.21:", desc: "Use the new `build.yaml` to determine HA base version." } - { date: "25.09.21:", desc: "Use the new lsio homeassistant wheel repo, instead of the HA wheels." } - { date: "13.09.21:", desc: "Build psycopg locally as the HA provided wheel does not seem to work properly." }