From 8ff9a7dd4b0f48feaf230b0a1eef6409398d0aeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 22:45:51 +0000 Subject: [PATCH 1/4] Bump lightgbm from 3.3.5 to 4.1.0 Bumps [lightgbm](https://github.com/microsoft/LightGBM) from 3.3.5 to 4.1.0. - [Release notes](https://github.com/microsoft/LightGBM/releases) - [Commits](https://github.com/microsoft/LightGBM/compare/v3.3.5...v4.1.0) --- updated-dependencies: - dependency-name: lightgbm dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements_test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_test.txt b/requirements_test.txt index da7b72fca8..5cebeb3e42 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -40,7 +40,7 @@ timm==0.9.2 catboost==1.1.1 GPy==1.10.0 -lightgbm==3.3.5 +lightgbm==4.1.0 xgboost==1.7.5 kornia~=0.6.12 From ff83f0e7afc162ccea43f02529c50d2578600e2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 07:23:18 +0000 Subject: [PATCH 2/4] Bump docker/metadata-action from 5.3.0 to 5.4.0 Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 5.3.0 to 5.4.0. - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/31cebacef4805868f9ce9a0cb03ee36c32df2ac4...9dc751fe249ad99385a2583ee0d084c400eee04e) --- updated-dependencies: - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/dockerhub.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index dd52aec2bc..122f5a366f 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -31,7 +31,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@31cebacef4805868f9ce9a0cb03ee36c32df2ac4 + uses: docker/metadata-action@9dc751fe249ad99385a2583ee0d084c400eee04e with: images: adversarialrobustnesstoolbox/releases tags: | From 294e950bec87d09a51a36e826be97c3733384ead Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 07:57:01 +0000 Subject: [PATCH 3/4] Bump tqdm from 4.65.0 to 4.66.1 Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.65.0 to 4.66.1. - [Release notes](https://github.com/tqdm/tqdm/releases) - [Commits](https://github.com/tqdm/tqdm/compare/v4.65.0...v4.66.1) --- updated-dependencies: - dependency-name: tqdm dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements_test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_test.txt b/requirements_test.txt index da7b72fca8..c1b43c3ae1 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -6,7 +6,7 @@ matplotlib==3.7.1 scikit-learn>=0.22.2,<1.2.0 six==1.16.0 Pillow==10.1.0 -tqdm==4.65.0 +tqdm==4.66.1 statsmodels==0.13.5 pydub==0.25.1 resampy==0.4.2 From d9eb29461099607bf2653cc250c24bf523f574d4 Mon Sep 17 00:00:00 2001 From: Beat Buesser Date: Tue, 19 Dec 2023 15:10:40 +0100 Subject: [PATCH 4/4] Update test for LightGBM 4.x Signed-off-by: Beat Buesser --- tests/metrics/test_verification_decision_trees.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/metrics/test_verification_decision_trees.py b/tests/metrics/test_verification_decision_trees.py index 02ddef54b7..4f8588a0cd 100644 --- a/tests/metrics/test_verification_decision_trees.py +++ b/tests/metrics/test_verification_decision_trees.py @@ -92,7 +92,7 @@ def test_LightGBM(self): "verbose": 0, } - model = lightgbm.train(parameters, train_data, valid_sets=test_data, num_boost_round=2, early_stopping_rounds=1) + model = lightgbm.train(parameters, train_data, valid_sets=test_data, num_boost_round=2) classifier = LightGBMClassifier(model=model)