From d19f0243a15bf27fd6004dbae12c82412be4e502 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 07:46:19 +0000 Subject: [PATCH 1/2] Bump pillow from 10.3.0 to 11.0.0 Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.3.0 to 11.0.0. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/10.3.0...11.0.0) --- updated-dependencies: - dependency-name: pillow 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 7c8ca7f610..338a22d896 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -5,7 +5,7 @@ scipy==1.10.1 matplotlib==3.7.1 scikit-learn==1.4.1.post1 six==1.16.0 -Pillow==10.3.0 +Pillow==11.0.0 tqdm==4.66.4 statsmodels==0.14.2 pydub==0.25.1 From c51ec58806b19b47ded37d2773baecf1f7370eb9 Mon Sep 17 00:00:00 2001 From: Beat Buesser Date: Sat, 14 Dec 2024 00:17:12 +0100 Subject: [PATCH 2/2] Ignore typing Signed-off-by: Beat Buesser --- art/estimators/object_tracking/pytorch_goturn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/art/estimators/object_tracking/pytorch_goturn.py b/art/estimators/object_tracking/pytorch_goturn.py index f4a2129d72..fced75e896 100644 --- a/art/estimators/object_tracking/pytorch_goturn.py +++ b/art/estimators/object_tracking/pytorch_goturn.py @@ -796,7 +796,7 @@ def track(self, img_files: list[str], box: np.ndarray, visualize: bool = False) for i_f, img_file in enumerate(img_files): image = Image.open(img_file) if not image.mode == "RGB": - image = image.convert("RGB") + image = image.convert("RGB") # type: ignore start_time = time.time() if i_f == 0: