Remove dependency on Pillow <10

This commit is contained in:
Timmy Welch 2025-01-21 19:15:55 -08:00
parent c9de8370c2
commit 280606ae11
2 changed files with 6 additions and 4 deletions

View File

@ -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:

View File

@ -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