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
The Fedora project is currently building all python packages with python 3.13.0b1 to catch problems before the release of python 3.13. The bash_kernel package fails to build, because the imghdr module, which was deprecated in python 3.11, has been removed. Suggested replacements:
Thanks, good point. I'd forgotten we were using the old imghdr module here.
I might be tempted to hardcode magic numbers for a limited list of file types into this project - say png, webp, jpeg, gif, bmp - to keep things simple. Otherwise, of those 3 projects, I'd suggest not python-magic, as that's a wrapper around a C library, which is an added headache. The other two look pretty similar at first glance.
The Fedora project is currently building all python packages with python 3.13.0b1 to catch problems before the release of python 3.13. The
bash_kernel
package fails to build, because the imghdr module, which was deprecated in python 3.11, has been removed. Suggested replacements:The text was updated successfully, but these errors were encountered: