We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noted that according to https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html#constants the artresizer function will fail as the Image.ANTIALIAS constant has been deprecated.
Image.ANTIALIAS
beets/beets/util/artresizer.py
Line 356 in a4e61e8
Looking at the code above, it should probably be updated to use the new Image.LANCZOS or Image.Resampling.LANCZOS constant instead.
Image.LANCZOS
Image.Resampling.LANCZOS
I'm not sure if this is backwards compatible into Pillow 9.5.0 but wanted to make the community aware of this breaking change.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I noted that according to https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html#constants the artresizer function will fail as the
Image.ANTIALIAS
constant has been deprecated.beets/beets/util/artresizer.py
Line 356 in a4e61e8
Looking at the code above, it should probably be updated to use the new
Image.LANCZOS
orImage.Resampling.LANCZOS
constant instead.I'm not sure if this is backwards compatible into Pillow 9.5.0 but wanted to make the community aware of this breaking change.
The text was updated successfully, but these errors were encountered: