Closed GoogleCodeExporter closed 9 years ago
Will look into this *relatively soon*, but it probably has to do with an
updated version of Cython. You could probably easily fix this yourself if you
commit a few minutes to working out the dependencies.
Original comment by mason.gr...@gmail.com
on 14 Dec 2011 at 2:59
I'm doubting this is a dependency issue now. It looks more like an issue on how
Cython is called somewhere. I was just testing in a python terminal and noticed
the following:
>>> import Cython
>>> Cython.Distutils.build_ext
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'Distutils'
>>>
>>>
>>> import Cython.Distutils
>>> Cython.Distutils.build_ext
<class Cython.Distutils.build_ext.build_ext at 0x7f2219418e20>
I just can't find the offending code that causes this. Any thoughts?
Original comment by capaul...@gmail.com
on 14 Dec 2011 at 5:41
So, this problem goes away (but gcc problems) when the following lines are
commented out:
in poly2tri.python/setuptools_cython-0.2.1-py2.7.egg/setuptools_cython.py
if 'Cython' in sys.modules:
del sys.modules['Cython']
With the lines enabled, I get the same error: AttributeError: 'module' object
has no attribute 'Distutils'
But the install crashes at GCC. Have you had any time to look at this?
Original comment by capaul...@gmail.com
on 24 Jan 2012 at 2:47
Fixed. The gcc issue was covered in issue 47. fix is to comment out "if
'Cython' in sys.modules:
del sys.modules['Cython']"
Original comment by capaul...@gmail.com
on 16 Mar 2012 at 10:46
thanks. I will fix this soon.
Original comment by mason.gr...@gmail.com
on 4 Apr 2012 at 1:24
Anyone is welcome to submit a patch. C++ and Java are now the officially
supported languages.
Original comment by mason.gr...@gmail.com
on 7 Apr 2012 at 5:14
Original issue reported on code.google.com by
capaul...@gmail.com
on 12 Dec 2011 at 5:58