Re: [matplotlib-devel] Use of meta on Artist

2012-11-30 Thread Jae-Joon Lee
Note that we already use a decorator for a similar purpose (allow_rasterization). Also, please note that the "draw" method is not just for drawing things. There are other things being done within the draw method, and I think some of them still need to be done even though the artist is invisible.

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-11-30 Thread Michael Droettboom
Thanks, Michiel. If you read between the lines of what I was saying, that is basically where I fall as well. There seems to be a lot of desire to use Cython to make the code more accessible, however, and I'm willing to consider it if it can be shown to be superior to the raw C/API for this tas

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-11-30 Thread Jason Grout
On 11/29/12 10:59 AM, Michael Droettboom wrote: > I've not had > much luck with Cython for this kind of thing in the past, but I know it > is popular. I'm curious about what problems you've run into and how long it was. In the past, Cython hasn't supported C++ very well, but the situation has g

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-11-30 Thread Chris Barker - NOAA Federal
On Fri, Nov 30, 2012 at 6:06 AM, Michael Droettboom wrote: > If you read between the lines of what I was saying, that is basically > where I fall as well. There seems to be a lot of desire to use Cython > to make the code more accessible, I'll add a beat to that drum -- I'm a big Cython fan. >

[matplotlib-devel] Travis numpy build failures on Python 3.x

2012-11-30 Thread Damon McDougall
We seem to have inherited these recently. I am questioning whether it is something caused by us or not. Can anybody build numpy/mpl under Python 3.x on their own machine successfully? -- Damon McDougall http://www.damon-is-a-geek.com Institute for Computational Engineering Sciences 201 E. 24th St

Re: [matplotlib-devel] Travis numpy build failures on Python 3.x

2012-11-30 Thread Damon McDougall
On Fri, Nov 30, 2012 at 4:25 PM, Damon McDougall wrote: > We seem to have inherited these recently. I am questioning whether it > is something caused by us or not. Can anybody build numpy/mpl under > Python 3.x on their own machine successfully? Looks like Jens found the problem: https://github.c

[matplotlib-devel] Fwd: Travis numpy build failures on Python 3.x

2012-11-30 Thread Damon McDougall
Forwarding to the list... -- Forwarded message -- From: Thomas Kluyver Date: Fri, Nov 30, 2012 at 4:35 PM Subject: Re: [matplotlib-devel] Travis numpy build failures on Python 3.x To: Damon McDougall On 30 November 2012 22:25, Damon McDougall wrote: > > We seem to have inheri

[matplotlib-devel] Fwd: Travis numpy build failures on Python 3.x

2012-11-30 Thread Damon McDougall
Forwarding to list again... -- Forwarded message -- From: Nathaniel Smith Date: Fri, Nov 30, 2012 at 5:13 PM Subject: Re: [matplotlib-devel] Travis numpy build failures on Python 3.x To: Damon McDougall On Fri, Nov 30, 2012 at 10:25 PM, Damon McDougall wrote: > We seem to hav

Re: [matplotlib-devel] Travis numpy build failures on Python 3.x

2012-11-30 Thread Nathaniel Smith
Let's try that again... -- Forwarded message -- From: Nathaniel Smith Date: Fri, Nov 30, 2012 at 11:13 PM Subject: Re: [matplotlib-devel] Travis numpy build failures on Python 3.x To: Damon McDougall On Fri, Nov 30, 2012 at 10:25 PM, Damon McDougall wrote: > We seem to have in

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-11-30 Thread Michiel de Hoon
One package (Pysam) that I use a lot relies on Cython, and requires users to install Cython before they can install Pysam itself. With Cython, is that always the case? Will all users need to install Cython? Or is it sufficient if only matplotlib developers install Cython? Best, -Michiel. --- O

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-11-30 Thread Nathaniel Smith
On Fri, Nov 30, 2012 at 11:40 PM, Michiel de Hoon wrote: > One package (Pysam) that I use a lot relies on Cython, and requires users to > install Cython before they can install Pysam itself. With Cython, is that > always the case? Will all users need to install Cython? Or is it sufficient > if

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-11-30 Thread Benjamin Root
On Fri, Nov 30, 2012 at 6:44 PM, Nathaniel Smith wrote: > On Fri, Nov 30, 2012 at 11:40 PM, Michiel de Hoon > wrote: > > One package (Pysam) that I use a lot relies on Cython, and requires > users to install Cython before they can install Pysam itself. With Cython, > is that always the case? Wil