jira
jira copied to clipboard
Replace `pillow` with `filetype`
When this PR was merged, https://github.com/pycontribs/jira/pull/1680, we replaced imghdr with Pillow.
Albeit Pillow is a great library, it has many conflicts with different platform architectures, and too much overhead for the use we have for it (We just use it to determine a MIME type for an image)
Looking at PEP 594, filetype is a reccommended replacement for imghdr and it is cross platform compatible.
This PR is replacing Pillow with filetype