Skip to content

Commit 60e952f

Browse files
authored
Merge branch 'main' into dependabot/pip/scikit-learn-1.6.0
2 parents a7cf88e + 2f374a8 commit 60e952f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

art/estimators/object_tracking/pytorch_goturn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ def track(self, img_files: list[str], box: np.ndarray, visualize: bool = False)
796796
for i_f, img_file in enumerate(img_files):
797797
image = Image.open(img_file)
798798
if not image.mode == "RGB":
799-
image = image.convert("RGB")
799+
image = image.convert("RGB") # type: ignore
800800

801801
start_time = time.time()
802802
if i_f == 0:

requirements_test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ scipy==1.10.1
55
matplotlib==3.7.1
66
scikit-learn==1.6.1
77
six==1.17.0
8-
Pillow==10.3.0
8+
Pillow==11.0.0
99
tqdm==4.67.1
1010
statsmodels==0.14.2
1111
pydub==0.25.1

0 commit comments

Comments
 (0)