[Pythonmac-SIG] py2app: works for me on 10.6, not 10.7

2012-07-31 Thread Michael McCracken
Hi, my py2app setup script is working fine if I run it on 10.6, but on 10.7 I've run into some problems. I want a standalone app, and on 10.6 I didn't specify semi_standalone: False in the options, and it worked fine. On 10.7, it appeared to be using the system python (loading old system versions

Re: [Pythonmac-SIG] py2app: works for me on 10.6, not 10.7

2012-07-31 Thread Chris Barker
On Tue, Jul 31, 2012 at 7:47 AM, Michael McCracken wrote: > Hi, my py2app setup script is working fine if I run it on 10.6, but on > 10.7 I've run into some problems. > > I want a standalone app, and on 10.6 I didn't specify semi_standalone: > False in the options, and it worked fine. > On 10.7, i

Re: [Pythonmac-SIG] py2app: works for me on 10.6, not 10.7

2012-07-31 Thread Michael McCracken
Thanks, Chris - you gave me an important clue. We are using homebrew to install python 2.7.3, so I assumed we were OK there, but we are also using zope's buildout to download dependencies, and it creates a python wrapper script with #!/usr/bin/python . So indeed, I was using the wrong python. Tha

Re: [Pythonmac-SIG] py2app: works for me on 10.6, not 10.7

2012-07-31 Thread Michael McCracken
On Tue, Jul 31, 2012 at 2:28 PM, Michael McCracken wrote: > Thanks, Chris - you gave me an important clue. > > We are using homebrew to install python 2.7.3, so I assumed we were OK > there, but we are also using zope's buildout to download dependencies, > and it creates a python wrapper script wi