Bill: I've been using pyinstaller with the 2.9 wxPython series for a while; are you using the most updated development copy of pyinstaller?
On Fri, Mar 8, 2013 at 11:34 AM, Bill Tutt <[email protected]> wrote: > The existing PyInstaller hooks work with wxPython 2.8.x (as long as you > want arg1 or kwargs (and thus pubsubv3), but in 2.9.x they made a change to > pubsub\__init__.py that needs additional special handling. > > In wx\lib\pubsub\__init__.py there is a function _tryAutoSetupV1(). > > In wxPython 2.8.x it tried to find "autosetuppubsubv1" via: > > import imp; > imp.find_module('autosetuppubsubv1') > > In wxPython 2.9.x they changed that to: > > import autosetuppubsubv1 > > So, in order for arg1, or kwargs pubsub v3 to work with the existing hooks > see kwargs or arg1 usage they should also auto add 'autosetuppubsubv1' to > the exclude list so that you don't get that dreaded pubsubconf.py > AssertionError exception. > > I just don't know how to add that to the hook. > > I'd be glad to generate a patch for the hook if somebody can point the way. > > Thanks, > Bill > > > -- > You received this message because you are subscribed to the Google Groups > "PyInstaller" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/pyinstaller?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Daniel Hyams [email protected] -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
