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
According to #720 (comment), this is the result of a deprecation in Python 3.12 and exec_module should be used instead. I haven't taken a closer look yet.
The engine fails to initialize with the error
AttributeError: 'FileFinder' object has no attribute 'find_module'
. It happens because it was deprecated, see https://docs.python.org/3/library/pkgutil.html#pkgutil.find_loader.It can be solved easily changing this:
trackma/trackma/engine.py
Line 315 in e56718b
For this:
I think maybe there's a better way to do it(?) but I don't have much time to check it.
The text was updated successfully, but these errors were encountered: