From 82462c64ff354152a8f83ea0e0eba826cd724c55 Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 15 Nov 2021 10:24:27 -0500 Subject: [PATCH] compile lxml to avoid broken official wheel --- Dockerfile | 1 + README.md | 1 + readme-vars.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 73278c5..2e90383 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,6 +48,7 @@ RUN \ echo "UpdateMethod=docker\nBranch=master\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://linuxserver.io)" > /app/bazarr/package_info && \ echo "**** Install requirements ****" && \ pip3 install -U --no-cache-dir pip && \ + pip install lxml --no-binary :all: && \ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ -r \ /app/bazarr/bin/requirements.txt && \ echo "**** clean up ****" && \ diff --git a/README.md b/README.md index 6efcb97..fd41109 100644 --- a/README.md +++ b/README.md @@ -236,6 +236,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **15.15.21:** - Temp fix for lxml, compile from scratch to avoid broken official wheel. * **25.10.21:** - Rebase to alpine 3.14. Fix numpy wheel. * **22.10.21:** - Added openblas package to prevent numpy error. * **16.05.21:** - Use wheel index. diff --git a/readme-vars.yml b/readme-vars.yml index ec07456..80d6521 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -45,6 +45,7 @@ app_setup_block: | # changelog changelogs: + - { date: "15.15.21:", desc: "Temp fix for lxml, compile from scratch to avoid broken official wheel." } - { date: "25.10.21:", desc: "Rebase to alpine 3.14. Fix numpy wheel." } - { date: "22.10.21:", desc: "Added openblas package to prevent numpy error." } - { date: "16.05.21:", desc: "Use wheel index." }