From 280606ae11d974d5730bcb04168bef5b4a6c026b Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Tue, 21 Jan 2025 19:15:55 -0800 Subject: [PATCH] Remove dependency on Pillow <10 --- comictaggerlib/ui/qtutils.py | 8 +++++--- setup.cfg | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/comictaggerlib/ui/qtutils.py b/comictaggerlib/ui/qtutils.py index c0c4208..51b3374 100644 --- a/comictaggerlib/ui/qtutils.py +++ b/comictaggerlib/ui/qtutils.py @@ -23,7 +23,7 @@ except ImportError: if qt_available: try: - from PIL import Image, ImageQt + from PIL import Image pil_available = True except ImportError: @@ -129,9 +129,11 @@ if qt_available: try: if pil_available: # Qt doesn't understand the format, but maybe PIL does - img = ImageQt.ImageQt(Image.open(io.BytesIO(image_data))) - success = True + buffer = io.BytesIO() + Image.open(io.BytesIO(image_data)).save(buffer, format='ppm') + success = img.loadFromData(buffer.getvalue()) except Exception: + logger.exception("Failed to load the image") pass # if still nothing, go with default image if not success: diff --git a/setup.cfg b/setup.cfg index 84d6982..ea32d51 100644 --- a/setup.cfg +++ b/setup.cfg @@ -43,7 +43,7 @@ install_requires = natsort>=8.1.0 packaging>=20 pathvalidate - pillow>=9.1.0,<10 + pillow>=9.1.0 pyrate-limiter>=2.6,<3 pyyaml rapidfuzz>=2.12.0