Skip to content

Commit

Permalink
Merge pull request #2511 from Trusted-AI/dependabot/pip/pillow-11.0.0
Browse files Browse the repository at this point in the history
Bump pillow from 10.3.0 to 11.0.0
  • Loading branch information
beat-buesser authored Jan 19, 2025
2 parents 96bedf5 + db38dd4 commit 2f374a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion art/estimators/object_tracking/pytorch_goturn.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ scipy==1.10.1
matplotlib==3.7.1
scikit-learn==1.4.1.post1
six==1.17.0
Pillow==10.3.0
Pillow==11.0.0
tqdm==4.67.1
statsmodels==0.14.2
pydub==0.25.1
Expand Down

0 comments on commit 2f374a8

Please sign in to comment.