Re: [Pythonmac-SIG] Py2app error

2012-07-16 Thread Ronald Oussoren
On 17 Jul, 2012, at 2:18, Mark Livingstone wrote: > Hello, > > Using both EPD 7.3 academic and free, I have tried to use py2app to > make an installer. This is the first time I have tried to do this. I > will ask on their mailing list as well. I guess I'll have to download EPD to test this, but

[Pythonmac-SIG] Py2app error

2012-07-16 Thread Mark Livingstone
Hello, Using both EPD 7.3 academic and free, I have tried to use py2app to make an installer. This is the first time I have tried to do this. I will ask on their mailing list as well. My setup.py script looks like this: import wx import sys # Application Information APP = "salstat.py" NAME = '

Re: [Pythonmac-SIG] Bundling zmq with py2app

2012-07-16 Thread Ronald Oussoren
On 16 jul. 2012, at 22:55, Thomas Robitaille wrote: > Hi Ronald, > >> Which zmq module? There are at least 2 different 0MQ bindings on PyPI. > > I'm using pyzmq. > >> If I install 'pyzmq' I get a different error than you, the libzmq.dylib was >> not present >> when I started the binary. A

Re: [Pythonmac-SIG] PyQT on Lion? (Charlie Clark)

2012-07-16 Thread Michael McCracken
Arana, please feel free to ask here about any questions building distributable apps with PyQt - I'm currently working on this and I might be able to share some workarounds I've had to use. Also, I'd suggest you use the current development version of py2app, which has some related changes. For exa

Re: [Pythonmac-SIG] Bundling zmq with py2app

2012-07-16 Thread Thomas Robitaille
Hi Ronald, > Which zmq module? There are at least 2 different 0MQ bindings on PyPI. I'm using pyzmq. > If I install 'pyzmq' I get a different error than you, the libzmq.dylib was > not present > when I started the binary. A quick fix is to change 'includes' to > 'packages' in > the OPTIONS d

Re: [Pythonmac-SIG] PyQT on Lion? (Charlie Clark)

2012-07-16 Thread Arana Fireheart
Charlie, Thanks for the response. Part of the reason I was trying to use virtualenv was to 'disconnect' from a few years of builds (some successful/ some unsuccessful). I was hoping to avoid doing a 'clean install' of my machine and reinstall of of the apps etc. The latest atte

Re: [Pythonmac-SIG] Bundling zmq with py2app

2012-07-16 Thread Ronald Oussoren
On 16 Jul, 2012, at 17:04, Ronald Oussoren wrote: > > On 16 Jul, 2012, at 16:07, Thomas Robitaille wrote: > >> Hi everyone, >> >> I am trying to build a MacOS X application using py2app, and am >> running into issues with the python zmq module. For example, if I have >> a setup.py script with:

Re: [Pythonmac-SIG] Bundling zmq with py2app

2012-07-16 Thread Ronald Oussoren
On 16 Jul, 2012, at 16:07, Thomas Robitaille wrote: > Hi everyone, > > I am trying to build a MacOS X application using py2app, and am > running into issues with the python zmq module. For example, if I have > a setup.py script with: Which zmq module? There are at least 2 different 0MQ bindings

[Pythonmac-SIG] Bundling zmq with py2app

2012-07-16 Thread Thomas Robitaille
Hi everyone, I am trying to build a MacOS X application using py2app, and am running into issues with the python zmq module. For example, if I have a setup.py script with: from setuptools import setup OPTIONS = { 'argv_emulation': False, 'includes': ['zmq'], 'excl