Re: [Pythonmac-SIG] does pkg_resources think that "macosx-10.3" is incompatible with 10.5?

2007-11-21 Thread Ronald Oussoren
On 21 Nov, 2007, at 20:59, Ronald Oussoren wrote: Does anyone know if there is a good reason for Python running on 10.5 to reject binaries built on 10.4, and if not what would be required to make this version check pass? This seems to be caused by distutils.util.get_platform() returning t

Re: [Pythonmac-SIG] does pkg_resources think that "macosx-10.3" is incompatible with 10.5?

2007-11-21 Thread Ronald Oussoren
On 20 Nov, 2007, at 20:53, zooko wrote: Folks: It appears that eggs built on Mac OS 10.4 are produced with filenames containing "macosx-10.3", like this: http://pypi.python.org/packages/2.5/s/simplejson/simplejson-1.7.3- py2.5-macosx-10.3-fat.egg but that if you try to easy_install such a pa

Re: [Pythonmac-SIG] appscript create new iphoto album

2007-11-21 Thread has
David Voswinkel wrote: > try to create an new iPhoto album, But cant get it working. Is this > a bug? > >> > app('iPhoto').make(new=k.regular_album, with_properties={ k.name : > 'New Album' }) The correct syntax would be: app('iPhoto').make( new=k.album,

Re: [Pythonmac-SIG] readline support for OS X Leopard

2007-11-21 Thread Ronald Oussoren
On Wednesday, November 21, 2007, at 04:48PM, "Nicholas Riley" <[EMAIL PROTECTED]> wrote: >On Mon, Oct 22, 2007 at 08:02:09AM -0500, [EMAIL PROTECTED] wrote: >> Just install GNU readline and point the build system at it. For example, I >> have MacPorts (http://www.macports.org/) installed in /op

Re: [Pythonmac-SIG] readline support for OS X Leopard

2007-11-21 Thread Nicholas Riley
On Mon, Oct 22, 2007 at 08:02:09AM -0500, [EMAIL PROTECTED] wrote: > Just install GNU readline and point the build system at it. For example, I > have MacPorts (http://www.macports.org/) installed in /opt/local. GNU > readline is installed there, and my readline module is linked against that: IP