Re: [Pythonmac-SIG] py2app cannot move to target thread error

2009-09-21 Thread Christopher Barker
Scott Frankel wrote: Creating a plugins/sqldrivers dir, copying the libqsqlpsql.bundle to it, then creating a qt.conf INI file specifying that location within the app bundle was all that was needed. I'll be happy to contribute my final setup.py file as a recipe. How would I go about that?

Re: [Pythonmac-SIG] Building packages under Snow Leopard and Python 2.6.x

2009-09-21 Thread Ned Deily
In article <7fd54a88-9d22-46c8-b25e-7d21efccf...@eku.edu>, Jerry LeVan wrote: > I have the community version of Python 2.6.2 installed on my > MacBook Pro running 10.6.1. > > I am trying to build psycopg2 ( 2.0.12) on my mac and am > no having much luck... > > [mbp:~/python/psycopg2-2.0.12]$ p

Re: [Pythonmac-SIG] py2app cannot move to target thread error

2009-09-21 Thread Scott Frankel
Hi all, In my last post I mentioned that the qt.conf INI file was key to fixing the "cannot move to target thread" problem, caused by multiple instances of Qt running in the same app. The following setup.py file is my encapsulation of the solution. This is my first brush with py2app, s