Re: [Cython] Cannot cythonize subclasses of setuptools.extension._Extension

2016-04-19 Thread Manuel Nuno Melo
at 11:48 AM, Erik Bray wrote: > On Mon, Apr 18, 2016 at 6:56 PM, Manuel Nuno Melo > wrote: > > Ah, sorry Erik, you're absolutely right. I mixed my results a bit and > must > > elaborate: > > > > 'setup_requires' on its own will indeed not generate

Re: [Cython] Cannot cythonize subclasses of setuptools.extension._Extension

2016-04-18 Thread Manuel Nuno Melo
nishing up this approach. On Mon, Apr 18, 2016 at 11:16 AM, Erik Bray wrote: > On Sat, Apr 16, 2016 at 1:29 PM, Manuel Nuno Melo > wrote: > > Hi Erik, > > Please post your solution; I'm curious to see it. > > Will do in a bit. I need to see if I can distill it so

Re: [Cython] Cannot cythonize subclasses of setuptools.extension._Extension

2016-04-16 Thread Manuel Nuno Melo
o ./setup.py install', you get a Cython egg downloaded into that directory, and its path added to sys.path (!!). Needless to say this can break in many nasty ways... On Sat, Apr 16, 2016 at 1:10 PM, Erik Bray wrote: > On Apr 14, 2016 21:07, "Manuel Nuno Melo" > wrote: > &

Re: [Cython] Cannot cythonize subclasses of setuptools.extension._Extension

2016-04-14 Thread Manuel Nuno Melo
t; > On Wed, Apr 13, 2016 at 9:35 PM, Manuel Nuno Melo > > wrote: > >> Hello devs, > >> > >> I'm developing the setup.py for a scientific package, MDAnalysis (see PR > >> #799). We depend on distutils and setuptool. Namely, we use > >> setuptoo

[Cython] Cannot cythonize subclasses of setuptools.extension._Extension

2016-04-14 Thread Manuel Nuno Melo
Hello devs, I'm developing the setup.py for a scientific package, MDAnalysis (see PR #799 ). We depend on distutils and setuptool. Namely, we use setuptools.extension.Extension class for our extensions.