Re: [Pythonmac-SIG] py2app: Can successfully create app with alias mode but version built for deployment returns an error message

2021-06-17 Thread Christopher Barker
On Thu, Jun 17, 2021 at 9:24 AM wrote: > I think `.pyx` files are Cython sources, > Yes, they are. But Cython is designed to show the source line number when there are errors. So this has been compiled. That error is vaguely familiar to me, I got it recently— I think the fix was to clean out an

Re: [Pythonmac-SIG] py2app: Can successfully create app with alias mode but version built for deployment returns an error message

2021-06-17 Thread jack . jansen
A quick guess: maybe pandas doesn’t like to be included into a py2app application in this way? I think `.pyx` files are Cython sources, and I think these need to be compiled on installation (which should have happend during py2app?). When you google for “pandas py2app” you’ll find people report