In article <[email protected]>, Charles Hartman <[email protected]> wrote: > Sorry, I know this is elementary. I haven't used py2app in a couple > of years and I think things have changed. I'm using Python 2.6.2, > wxPython (current), py2app 0.3.6, and a fresh download of setuptools. > My setup.py for my app contains the newer style "from setuptools > import setup" rather than the old "from distutils.core import setup". > Things seem to work until near the end, when I get a message about a > missing Info.plist file. Traceback pasted below.
Try upgrading to py2app (0.4.2) from svn trunk. One of the items in the news file there: "Remove dependency on a 'version.plist' file in the python framework" Something like this (untested) should work (and avoid potential problem due to a setuptools incompatibility with the lastest version of svn): mkdir /tmp/p2a cd /tmp/p2a svn co http://svn.pythonmac.org/py2app/py2app/trunk/ easy_install trunk/ -- Ned Deily, [email protected] _______________________________________________ Pythonmac-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/pythonmac-sig
