I have just upgraded to the latest version of Magika and am using the Python library.
Regardless of whether I run it in the debugger or directly I now get this DeprecationWarning:
.../lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=91146) is multi-threaded, use of fork() may lead to deadlocks in the child.
self.pid = os.fork()
This message appears as long as I have from magika import Magika in my code.
Any idea why that is the case and how I can remove that message?