On Sep 28, 2006, at 8:28 PM, Michael Glassford wrote:
After a bit of further investigation, the problem appears to be that py2app isn't correctly finding stuff that's in a zipped egg file, so that stuff is never being included in the py2app application's site-packages.zip file. Should it? Or should the eggs all be unzipped when they're installed? Maybe I have the wrong version of something?
That's an entirely plausibly explanation, last time I checked py2app didn't support zipped eggs (or eggs per-se, eggs are treated like any other directory on sys.path: python files that are needed are copied into the app bundle)
I install most eggs unzipped because of this, and because I'm not entirely happy with setuptool's autoextraction of extension. IMHO eggs that contain extensions aren't zip-safe unless you're using a version of python that can load extensions directly from zipfiles (without writing a temporary file).
Ronald
Mike _______________________________________________ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig