Skip to content

Commit 2f374a8

Browse files
authored
Merge pull request #2511 from Trusted-AI/dependabot/pip/pillow-11.0.0
Bump pillow from 10.3.0 to 11.0.0
2 parents 96bedf5 + db38dd4 commit 2f374a8

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.4.1.post1
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)