Re: [Pythonmac-SIG] Unwanted PPC build in setuptools

2009-10-21 Thread Dave Peterson
Ronald Oussoren wrote: On 19 Oct, 2009, at 23:20, Robert Kern wrote: I presume he's using the Enthought Python Distribution (disclosure: I work for Enthought), which does have such a version number. It's basically a not-entirely-palatable hack to make sure that users can install and uninstal

Re: [Pythonmac-SIG] Module build fails because distutils adds "-isysroot"

2009-09-30 Thread Dave Peterson
Hi Patrick, Patrick Näf wrote: ... my module's build fails miserably, like this: tharbad:~ patrick$ /Library/Frameworks/Python.framework/Versions/3.1/bin/python3.1 ./setup.py build_ext --inplace running build_ext building 'aprmd5' extension gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/Mac

Re: [Pythonmac-SIG] py2app & multiprocessing

2009-08-12 Thread Dave Peterson
Christopher Barker wrote: hmm -- I think that is indeed where the working dir is set by py2app when starting op. try: print os.getcwd() you can look in the "Console" app to see stuff printed to stdout. Or you can just open up a terminal and explicitly run the executable like so: /path/t

Re: [Pythonmac-SIG] py2app creating semi_standalone instead of standalone app

2009-08-05 Thread Dave Peterson
Brendan Simon (eTRIX) wrote: Maybe it has something to do with this statement in the py2app website. If the --semi-standalone option is used (forced if a vendor Python is being used), then the not_stdlib_filter will be automatically added to ensure that the Python standard library is

[Pythonmac-SIG] What py2app options keyword will add everything within a package?

2009-07-21 Thread Dave Peterson
I'm trying to use py2app to build an app bundle for an application that, at runtime, imports different backend packages based on the environment it finds itself running in. It then uses a redirect mechanism to import symbols from within this backend package. Since I know what I'm bundling, I

[Pythonmac-SIG] Trouble getting py2app to create self-contained app bundles

2009-07-15 Thread Dave Peterson
Hello, I've been having a lot of trouble getting py2app (version 0.3.6) to create truely self-contained app bundles. I'm thinking that either I'm doing something so obviously wrong, or else py2app doesn't really create self-contained bundles. I've tried using it in both Apple's standard Pyt