You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the development & maintenance of the filedepot package!
I recently started seeing this deprecation warning when using the WithThumbnailFilter class with pillow v9.2.0 (I'm running on Python 3.10.7):
lib/python3.10/site-packages/depot/fields/filters/thumbnails.py:37: DeprecationWarning:
BILINEAR is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.BILINEAR instead.
thumbnail.thumbnail(self.thumbnail_size, Image.BILINEAR)
Thanks for the development & maintenance of the filedepot package!
I recently started seeing this deprecation warning when using the
WithThumbnailFilter
class with pillow v9.2.0 (I'm running on Python 3.10.7):lib/python3.10/site-packages/depot/fields/filters/thumbnails.py:37: DeprecationWarning: BILINEAR is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.BILINEAR instead. thumbnail.thumbnail(self.thumbnail_size, Image.BILINEAR)
It looks like
Image.BILINEAR
was deprecated in pillow 9.1.0 in favour ofImage.Resampling.BILINEAR
.The text was updated successfully, but these errors were encountered: