Hi florian, This night, I’ve cleaned up all my directory, reapplied the patch and…
It works! J In fact there was a mess on my system install mixing python25 and python26…. Anyhow, your latest patch 13/12/2009 is perfect! My program use a lot of libs, matplotlib/pyqt4/numpy/scipy and all manifest are OK J Even the one file creation is working packing all .dll inside the .Exe! Gooooood job! You can include it in the main tree ;) Ps: Makespec.py ..\%name%.py --manifest msvc90dep.manifest is MANDATORY without it I got DLL import error. Can this be done automagically for the user? De : Laurent Dufrechou [mailto:[email protected]] Envoyé : dimanche 13 décembre 2009 20:33 À : [email protected] Objet : Re: [PyInstaller] Re: Issue with python 2.6 + ticket 39 patch Hi florian, Look this interesting thing: In [40]: imp.load_module('matplotlib._path',a,"C:\\...\\Manager\\",('.pyd','rb',3)) --------------------------------------------------------------------------- ImportError Traceback (most recent call last) C:\..\Manager\<ipython console> in <module>() ImportError: DLL load failed: Le module spÚcifiÚ est introuvable. In [41]: a,b,c = imp.find_module('matplotlib._path') In [42]: imp.load_module('test',a,b,c) Out[42]: <module 'matplotlib._path' from 'matplotlib._path.pyd'> I think there is definitively something wrong with imp.laod_module. I'll try to patch iu.py to use find_module, and will keep you updated. Cheers, Laurent -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
