From 04409602a6ff609de034dcab6cbc61af59c208fa Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 4 Oct 2023 07:10:51 +0200 Subject: [PATCH] Remove numpy armv7l lock since wheels are now available --- docker/Dockerfile.armhf | 4 ++-- requirements.txt | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile.armhf b/docker/Dockerfile.armhf index 902cab9aa..5431706d8 100644 --- a/docker/Dockerfile.armhf +++ b/docker/Dockerfile.armhf @@ -36,9 +36,9 @@ ENV LD_LIBRARY_PATH /usr/local/lib # Install dependencies COPY --chown=ftuser:ftuser requirements.txt /freqtrade/ USER ftuser -RUN pip install --user --no-cache-dir numpy==1.25.2 \ +RUN pip install --user --no-cache-dir numpy \ && pip install --user /tmp/pyarrow-*.whl \ - && pip install --user --no-build-isolation TA-Lib==0.4.28 \ + && pip install --user TA-Lib==0.4.28 \ && pip install --user --no-cache-dir -r requirements.txt # Copy dependencies to runtime-image diff --git a/requirements.txt b/requirements.txt index b55d83bb1..803843129 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ -numpy==1.26.0; platform_machine != 'armv7l' -numpy==1.25.2; platform_machine == 'armv7l' +numpy==1.26.0 pandas==2.0.3 pandas-ta==0.3.14b