From c40ac27d71e57ea2026ad29d710427776c811cb5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 31 Jul 2024 20:36:44 +0200 Subject: [PATCH 1/3] chore: Remove pip pin from ci --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e4ef2faa..bb3ea2221 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: - name: Installation - *nix run: | - python -m pip install --upgrade "pip<=24.0" wheel + python -m pip install --upgrade pip wheel export LD_LIBRARY_PATH=${HOME}/dependencies/lib:$LD_LIBRARY_PATH export TA_LIBRARY_PATH=${HOME}/dependencies/lib export TA_INCLUDE_PATH=${HOME}/dependencies/include @@ -197,7 +197,7 @@ jobs: - name: Installation (python) run: | - python -m pip install --upgrade "pip<=24.0" wheel + python -m pip install --upgrade pip wheel export LD_LIBRARY_PATH=${HOME}/dependencies/lib:$LD_LIBRARY_PATH export TA_LIBRARY_PATH=${HOME}/dependencies/lib export TA_INCLUDE_PATH=${HOME}/dependencies/include @@ -427,7 +427,7 @@ jobs: - name: Installation - *nix run: | - python -m pip install --upgrade "pip<=24.0" wheel + python -m pip install --upgrade pip wheel export LD_LIBRARY_PATH=${HOME}/dependencies/lib:$LD_LIBRARY_PATH export TA_LIBRARY_PATH=${HOME}/dependencies/lib export TA_INCLUDE_PATH=${HOME}/dependencies/include From 8105f51603692404d56f0eefcb2b54a2b618e33b Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 31 Jul 2024 20:39:12 +0200 Subject: [PATCH 2/3] chore: remove pip lock from Dockerfiles --- Dockerfile | 2 +- docker/Dockerfile.armhf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cedeafbe6..e435f7f1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ FROM base as python-deps RUN apt-get update \ && apt-get -y install build-essential libssl-dev git libffi-dev libgfortran5 pkg-config cmake gcc \ && apt-get clean \ - && pip install --upgrade "pip<=24.0" wheel + && pip install --upgrade pip wheel # Install TA-lib COPY build_helpers/* /tmp/ diff --git a/docker/Dockerfile.armhf b/docker/Dockerfile.armhf index fbd952111..688254122 100644 --- a/docker/Dockerfile.armhf +++ b/docker/Dockerfile.armhf @@ -17,7 +17,7 @@ RUN mkdir /freqtrade \ && chown ftuser:ftuser /freqtrade \ # Allow sudoers && echo "ftuser ALL=(ALL) NOPASSWD: /bin/chown" >> /etc/sudoers \ - && pip install --upgrade "pip<=24.0" + && pip install --upgrade pip WORKDIR /freqtrade From 02621eee74217c38c4bf34adacbd14311903f3d1 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 31 Jul 2024 20:39:21 +0200 Subject: [PATCH 3/3] chore: remove pip version lock from instal scripts --- build_helpers/install_windows.ps1 | 2 +- setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_helpers/install_windows.ps1 b/build_helpers/install_windows.ps1 index 5f0c643ac..4aa070992 100644 --- a/build_helpers/install_windows.ps1 +++ b/build_helpers/install_windows.ps1 @@ -1,6 +1,6 @@ # vendored Wheels compiled via https://github.com/xmatthias/ta-lib-python/tree/ta_bundled_040 -python -m pip install --upgrade "pip<=24.0" wheel +python -m pip install --upgrade pip wheel $pyv = python -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')" diff --git a/setup.sh b/setup.sh index f1317c02c..18f7682d8 100755 --- a/setup.sh +++ b/setup.sh @@ -49,7 +49,7 @@ function updateenv() { source .venv/bin/activate SYS_ARCH=$(uname -m) echo "pip install in-progress. Please wait..." - ${PYTHON} -m pip install --upgrade "pip<=24.0" wheel setuptools + ${PYTHON} -m pip install --upgrade pip wheel setuptools REQUIREMENTS_HYPEROPT="" REQUIREMENTS_PLOT="" REQUIREMENTS_FREQAI=""