-
Notifications
You must be signed in to change notification settings - Fork 320
New issue
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
Saving TIFF image raises Value error #610
Comments
Unfortunately I introduced a regression in version 2.8.4. I tried to revert this, but now running https://github.com/SmileyChris/easy-thumbnails/actions/runs/3696468077/jobs/6260204110 https://github.com/SmileyChris/easy-thumbnails/actions/runs/3866392805/jobs/6590486709 what's the difference? Therefore I'd like to propose to replace What do you think? |
Problem is in setup.py on this line: Line 25 in c75a281
Previous version imported get_version from
But now is imported file |
On attempt to save an image of type
TIFF
PIL raises a ValueError complaining with: "quality setting only supported for 'jpeg' compression".This can easily be prevented removing the
quality
key from the options dictionary.I already prepared a patch for this issue.
The text was updated successfully, but these errors were encountered: