From d4607f58883a42e242d3b93c156bc092504e457f Mon Sep 17 00:00:00 2001 From: Masahiro Hiramori Date: Tue, 9 Jan 2024 11:17:10 +0900 Subject: [PATCH 1/2] disable fail-fast --- .github/workflows/pythonapp.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 5ce2d9a1..0edcc989 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -22,6 +22,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-22.04, macos-12, windows-2022] python-version: ['3.9', '3.10', '3.11'] From 4a342b56036687833923246c36a417cb10c656b8 Mon Sep 17 00:00:00 2001 From: Masahiro Hiramori Date: Tue, 9 Jan 2024 11:18:13 +0900 Subject: [PATCH 2/2] unpin xgb version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dca5a7a5..b991c607 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ ] extra_requires = [ # The need each for these depends on which libraries you plan to convert from - "xgboost>=0.90,<2.0.0", + "xgboost>=0.90", "lightgbm>=2.2", "holidays", "prophet",