Re: [matplotlib-devel] SF.net SVN: matplotlib: [4325] trunk/matplotlib/lib/matplotlib/axes.py

2007-11-16 Thread Andrew Straw
In any case, I think it's dangerous to set numpy's global error handling mode permanently. Is it feasible to do this on a need-to-protect basis by wrapping just the cases where this is needed with: npy_orig_err = npy.seterr(invalid='ignore') try: do_potentially_risky_stuff() finally:

Re: [matplotlib-devel] Bugs in rev 4336 mpl svn

2007-11-16 Thread Darren Dale
Hi Rob, On Friday 16 November 2007 11:14:50 am Rob Hetland wrote: Some recent changes (in the last few days) have caused my build to break. Three things: First of all, the line in setupext.py: if version.version.endswith ('mpl'): fails. I can comment this block out, and set the return of

[matplotlib-devel] Bugs in rev 4336 mpl svn

2007-11-16 Thread Rob Hetland
Some recent changes (in the last few days) have caused my build to break. Three things: First of all, the line in setupext.py: if version.version.endswith ('mpl'): fails. I can comment this block out, and set the return of check_provide_traits(): to True, and things seem to work well.

Re: [matplotlib-devel] Bugs in rev 4336 mpl svn

2007-11-16 Thread Darren Dale
On Friday 16 November 2007 01:46:25 pm Rob Hetland wrote: On Nov 16, 2007, at 6:10 PM, Darren Dale wrote: Hi Rob, On Friday 16 November 2007 11:14:50 am Rob Hetland wrote: Some recent changes (in the last few days) have caused my build to break. Three things: First of all, the line

Re: [matplotlib-devel] SF.net SVN: matplotlib: [4325] trunk/matplotlib/lib/matplotlib/axes.py

2007-11-16 Thread Eric Firing
Darren Dale wrote: I think nan's and inf's are a fact of life. They sometimes pop up in my work, and would prefer that matplotlib handle them properly. But I haven't contributed much to the actual plotting functions and don't know much about the advantages of masked arrays, so I'll defer

Re: [matplotlib-devel] Bugs in rev 4336 mpl svn

2007-11-16 Thread Darren Dale
On Friday 16 November 2007 04:23:41 pm Rob Hetland wrote: __version__ = '3.0.0b1' So, no version, rather __version__. This is fixed in svn. traits-2: no version report (that I can find) traits-2: version.version traits-3: version.__version__ traits-4: stay tuned :) Darren