From daaff66ff01be9a65901cfd79c2cd5b3df8a601a Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 30 Aug 2025 11:14:15 +0200 Subject: [PATCH 1/2] chore: Bump joblib dependency to 1.5.2 --- requirements-freqai.txt | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-freqai.txt b/requirements-freqai.txt index d45f35d19..15a03d7b7 100644 --- a/requirements-freqai.txt +++ b/requirements-freqai.txt @@ -4,7 +4,7 @@ # Required for freqai scikit-learn==1.7.1 -joblib==1.5.1 +joblib==1.5.2 catboost==1.2.8; 'arm' not in platform_machine lightgbm==4.6.0 xgboost==3.0.4 diff --git a/requirements.txt b/requirements.txt index 301a2bacb..db1545221 100644 --- a/requirements.txt +++ b/requirements.txt @@ -25,7 +25,7 @@ jsonschema==4.25.1 tabulate==0.9.0 pycoingecko==3.2.0 jinja2==3.1.6 -joblib==1.5.1 +joblib==1.5.2 rich==14.1.0 pyarrow==21.0.0; platform_machine != 'armv7l' and platform_machine != "aarch64" # TODO: downgrade for aarch64 until https://github.com/apache/arrow/issues/47229 is resolved From 54c4dd1ce6492893607a5f4eb0548417976ffd4e Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 30 Aug 2025 11:18:02 +0200 Subject: [PATCH 2/2] chore: run CI against 3.13 unconditionally again Pinning to 3.13.6 was a workaround for the loky bug --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 330994a5b..4a7b2a4b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -258,7 +258,7 @@ jobs: strategy: matrix: os: [ "windows-2022", "windows-2025" ] - python-version: ["3.11", "3.12", "3.13.6"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v5