[Pythonmac-SIG] Py2App and PyQt4 Issues

2013-04-27 Thread J Silverman
Hi All, I'm attempting to get py2app and PyQt4 to work on my Mac running OSX 10.6. I've tried multiple variations of Python (2.7.4, 3.2.4, 3.3.1, etc), and also tried both the premade binary of PyQtx and compiled my own of the most recent stable version of PyQt4 (4.10.1). Yet despite this, I

[Pythonmac-SIG] py2app and PyQt4

2011-10-24 Thread Ronald Oussoren
Hi, Could someone that uses PyQt4 on OSX please test if the current repository head at works for packaging PyQt applications? I've tried to fix the recipe and it now at least good enough to build the (trivial) sample applications that's included in

Re: [Pythonmac-SIG] py2app and PyQt4

2010-03-08 Thread Christopher Barker
Emmanuel Blot wrote: I would like to write a setup.py script for py2app, but I keep bumping into an error I don't know how to resolve: How do I specify a dependency on PyQt4 ? First things first: Please specify exactly what versions and builds of python, pyqt4 and py2app, and OS-X you are usi

[Pythonmac-SIG] py2app and PyQt4

2010-03-07 Thread Emmanuel Blot
Hi All, I would like to write a setup.py script for py2app, but I keep bumping into an error I don't know how to resolve: How do I specify a dependency on PyQt4 ? * If I do not tell py2app about the dependency, it successfully creates a Mac OS X application package, but fails to run it as it can

Re: [Pythonmac-SIG] py2app and PyQt4

2008-12-02 Thread Jeremy Sanders
On Fri, 21 Nov 2008, Christopher Barker wrote: Jeremy Sanders wrote: Thanks for the reminder. Using the latest development version fixes the nasty uic issue - I only had to manually include the sip package. good to hear -- I wonder why the sip recipe didn't work? Any chance you can figure it

Re: [Pythonmac-SIG] py2app and PyQt4

2008-11-21 Thread Christopher Barker
Jeremy Sanders wrote: Thanks for the reminder. Using the latest development version fixes the nasty uic issue - I only had to manually include the sip package. good to hear -- I wonder why the sip recipe didn't work? Any chance you can figure it out and provide a patch? -Chris -- Christop

Re: [Pythonmac-SIG] py2app and PyQt4

2008-11-21 Thread Jeremy Sanders
On Fri, 21 Nov 2008, Christopher Barker wrote: Also, make sure you're using the latest py2app also. easy_install py2app==dev Thanks for the reminder. Using the latest development version fixes the nasty uic issue - I only had to manually include the sip package. Thanks again! Jeremy -- J

Re: [Pythonmac-SIG] py2app and PyQt4

2008-11-21 Thread Christopher Barker
Jeremy Sanders wrote: Would it be possible for someone to have a look at the test case I've included? Sorry, I don't use QT, and don't have the time to mess with it now, but you might want to look at the sip recipe: /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packa

Re: [Pythonmac-SIG] py2app and PyQt4

2008-11-21 Thread Jeremy Sanders
Would it be possible for someone to have a look at the test case I've included? It is a very simple PyQt4 program to load a dialog from a ui file. py2app doesn't seem to handle the PyQt4.uic module properly. It also leaves out sip.py. Thanks Jeremy -- Jeremy Sanders <[EMAIL PROTECTED]> htt

[Pythonmac-SIG] py2app and PyQt4

2008-11-20 Thread Jeremy Sanders
Hi - I'm having problems with my PyQt4 application which uses pyuic dynamically to load in dialogs. Firstly py2app doesn't seem to include sip in the output dist, but does include PyQt4. Presumably it should work out that PyQt4 is dependent on sip. I can fix this with an explicit import sip, b