From 8915e95c1ee7a59763573c35761f14a74ea59aca Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Sun, 9 Feb 2025 14:57:34 +0000 Subject: [PATCH 1/3] empty From 42a69042f8285e0c27ce7fe7bb52f403b0a6b7b3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 9 Feb 2025 14:58:20 +0000 Subject: [PATCH 2/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- test/gbdt/test_gbdt.py | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/test/gbdt/test_gbdt.py b/test/gbdt/test_gbdt.py index 36c8c327..830d0e51 100644 --- a/test/gbdt/test_gbdt.py +++ b/test/gbdt/test_gbdt.py @@ -13,19 +13,21 @@ from torch_frame.testing.text_embedder import HashTextEmbedder -@pytest.mark.parametrize('gbdt_cls', [ - # TODO: Run CatBoost test on Python 3.13 once supported - # https://github.com/catboost/catboost/issues/2748 - pytest.param( - CatBoost, - marks=pytest.mark.skipif( - sys.version_info >= (3, 13), - reason="Not supported on Python 3.13", +@pytest.mark.parametrize( + 'gbdt_cls', + [ + # TODO: Run CatBoost test on Python 3.13 once supported + # https://github.com/catboost/catboost/issues/2748 + pytest.param( + CatBoost, + marks=pytest.mark.skipif( + sys.version_info >= (3, 13), + reason="Not supported on Python 3.13", + ), ), - ), - XGBoost, - LightGBM, -]) + XGBoost, + LightGBM, + ]) @pytest.mark.parametrize('stypes', [ [stype.numerical], [stype.categorical], From 2e118c8d26ba21fa806f815652568776a424cae7 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Sun, 9 Feb 2025 15:01:35 +0000 Subject: [PATCH 3/3] update --- .github/workflows/testing.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index cd8c909b..08b1f894 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -53,6 +53,12 @@ jobs: examples/** README.md CHANGELOG.md + .github/workflows/changelog.yml + .github/workflows/dependabot-auto-merge.yml + .github/workflows/documentation.yml + .github/workflows/labeler.yml + .github/workflows/linting.yml + .github/workflows/release.yml - name: Setup packages if: steps.changed-files-specific.outputs.only_changed != 'true'