The unversioned so warning is misleading for Python modules that are compiled from C. You get something like _module.so as the result. The unversioned so library check is looking for ELF shared files that end with ".so" and looking for a corresponding ".so.X.Y.Z" file. It doesn't find that, so it assumes it's a broken library installation.
The unversioned so check should ignore .so Python modules.
Log in to comment on this ticket.