On 23 Jul, 2010, at 0:21, Christopher Barker wrote:
> Ronald Oussoren wrote:
>>> Ronald Oussoren wrote:
modulegraph should be platform independent
>>> indeed -- it's used by bbfreeze:
>>>
>>> http://pypi.python.org/pypi/bbfreeze/0.96.5
>>>
>>> Though I think he's forked it. But it might be
HI folks,
I'm trying to test the latest py2app updates. However, easy_install is
failing in a number of places. I'm trying:
easy_install py2app==dev
but get errors in the modulegraph dependency.
When I install modulegraph==dev, I get errors in the altgraph dependency.
If I install altgraph,
Christopher Barker wrote:
Hi folks,
I'm trying to test the latest py2app updates. However, easy_install is
failing in a number of places. I'm trying:
easy_install py2app==dev
but get errors in the modulegraph dependency.
It looks like somehow pypi doesn't know about modulegraph svn (or has
Ronald,
I found the following tiny bug in py2app/build_app.py:
near line 475, there is:
allres = chain(getattr(dist, 'data_files', ()) or (),
self.resources)
but "chain" was never defined.
A simple:
from itertools import chain
At the top of the file seems to have fixed it.
-Chris
hi
i am trying to setup a modulegraph test that triggers missing import
for ifilter, imap
some hurdles
* i am not at a mac currently.
a good thing, this results in cross platform tests
* altgraph must be installed because pkg_resource require does not
find it otherwise
this is not so good