-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
FIX: use supported attribute to check pillow version #16086
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
Conversation
the PILLOW_VERSION attribute was deprecated in pillow 5.2 and removed in pillow 7.0. The __version__ attribute is present in the minimum version we check (3.4). closes matplotlib#16083
This will have to be backported to v3.1.x and v2.2.x |
@meeseeksdev backport to v3.1.x |
v2.2.x does not have the version check and thus does not need a backport. |
…086-on-v3.1.x Backport PR #16086 on branch v3.1.x (FIX: use supported attribute to check pillow version)
Thanks for taking care of the backports @timhoffm ! |
Is there a rough schedule for the next release (eg. 3.1.x or 3.2.0) with this fix? Thanks! |
I am working on it right now, goal is 2.2.5, 3.1.3, and 3.2.0rc3 by end of day tomorrow 🤞 . |
Ended up going down a few extra rabbits holes (and having to fix a pandas related bug) and took almost 2 more weeks, but I just tagged 3.1.3, should make it's way out through the binary channels in the next few days. Sorry this took so long. |
the PILLOW_VERSION attribute was deprecated in pillow 5.2 and removed
in pillow 7.0. The version attribute is present in the minimum
version we check (3.4).
closes #16083