On Mon, Feb 22, 2010 at 4:21 PM, Robert Kern <[email protected]> wrote: > Other parts of numpy.distutils handle that. Unfortunately, those are the parts > that conflict with Cython's distutils extensions. Just use > > include_dirs=[numpy.get_include()]
So there's both numpy.get_include and numpy.distutils.misc_util.get_numpy_include_dirs The former returns a string while the latter returns a list (which I guess is somewhat more flexible), and the latter is implemented in terms of the former, but I don't really understand the extra stuff it's doing. Is one preferred? -- Nathaniel _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
