Ralf Gommers wrote:
For numpy and scipy we use bdist_mkg to build dmg installers, and we had a user complain about a not so informative error message about a missing System Python.

This has been an issue for along time -- but I never got as far as figuring out a patch -- thanks!

I hope Ronald will get a chance to apply it.

-Chris


System Python means from python.org <http://python.org>
instead of Apple Python, so I can understand the confusion. You can find the details in http://projects.scipy.org/scipy/ticket/1177. I propose this fix for plists.py:

94c94,99
<     title = u'%s requires %s to install.' % (pkgname, name,)
---
> # System python can be interpreted as Apple Python, explain this better
 >     if name.startswith('System Python'):
> title = u'%s requires %s from www.python.org <http://www.python.org> to install.' % (pkgname, > name[7:],)
 >     else:
 >         title = u'%s requires %s to install.' % (pkgname, name,)

I hope this change can end up in the next bdist_mpkg version.

Also, it would be helpful to have a correct email address on PyPi. I contacted Bob Ippolito, who referred me to this list or Ronald Oussoren (of whom I have no address).

Best regards,
Ralf Gommers


------------------------------------------------------------------------

_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG


--
Christopher Barker, Ph.D.
Oceanographer

Emergency Response Division
NOAA/NOS/OR&R            (206) 526-6959   voice
7600 Sand Point Way NE   (206) 526-6329   fax
Seattle, WA  98115       (206) 526-6317   main reception

chris.bar...@noaa.gov
_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG

Reply via email to