Bump pillow to 10.2.0. (#6091)

This commit is contained in:
Pieter Frenssen 2024-01-15 01:48:02 +02:00 committed by GitHub
parent 5220c9edf8
commit dd2dca4d08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -67,13 +67,13 @@ def validate_pillow_installed(value):
except ImportError as err:
raise cv.Invalid(
"Please install the pillow python package to use this feature. "
'(pip install "pillow==10.1.0")'
'(pip install "pillow==10.2.0")'
) from err
if version.parse(PIL.__version__) != version.parse("10.1.0"):
if version.parse(PIL.__version__) != version.parse("10.2.0"):
raise cv.Invalid(
"Please update your pillow installation to 10.1.0. "
'(pip install "pillow==10.1.0")'
"Please update your pillow installation to 10.2.0. "
'(pip install "pillow==10.2.0")'
)
return value

View File

@ -1,3 +1,3 @@
pillow==10.1.0
pillow==10.2.0
cairosvg==2.7.1
cryptography==41.0.4