I have delevloped (for the past 7 years) a wxPython App that would like to distribute thru the Mac App Store. I am using Python2.7 and wxPython2.9.4 (cocoa). The App is the bundled using py2app. All looks good so far. The problem is that Application Loader rejects the Package because py2app bundles this dynamic library "libwx_osx_cocoau-2.9.4.0.0.dylib" that obviously contains ppc code and submissions must be intel only.
How can I bundle this app without the ppc code?
The --arch="intel" argument for py2app does not solve this problem.
How can I achieve this? The rest of the bundle is OK.
Thanks