Hi, it looks like we don't analyze for dependencies both the import hooks and the bootstrap scripts (pyi_rth_bootloader, iu, archive).
If you try to run PyInstaller on Python 2.4 (I'm using a VM running Ubuntu 6.06), it fails to package even the simplest hello world example because: * zlib.so is not being packaged, so we can't load PYZ files. The dependency comes from archive.py, but nobody bothers to analyze it. Actually, we should probably add zlib always and call it a day. I don't think that the optional dependency is anymore useful nowadays. * codecs is not being packaged, but it is required by pyi_rth_encodings. Comments? -- Giovanni Bajo :: [email protected] Develer S.r.l. :: http://www.develer.com My Blog: http://giovanni.bajo.it -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
