Patch for numpy support

Without the patch I get:

Are you using matplotlib subversion? What does

  >>> import matplotlib
  >>> matplotlib.__version__

report?

My guess is that this was fixed by Travis' commit that imported the
old linalg namespace

elif which[0] == "numpy":
    from numpy.linalg import *
    inverse = inv
    eigenvectors = eig
    try:
        from numpy.linalg.old import *
    except:
        pass

I am not getting your import error w/ current numpy snv (rev 2312)

JDH

   > Without the patch I get:

Are you using matplotlib subversion?

Hmm, I was using cvs.., I didn't notice the switch to svn.

What does

>>> import matplotlib
>>> matplotlib.__version__

report?

import matplotlib
matplotlib.__version__

'0.87.1cvs'

My guess is that this was fixed by Travis' commit that imported the
old linalg namespace

elif which[0] == "numpy":
   from numpy.linalg import *
   inverse = inv
   eigenvectors = eig
   try:
       from numpy.linalg.old import *
   except:
       pass

I am not getting your import error w/ current numpy snv (rev 2312)

Ok, I'll switch to svn.

Thanks,
Pearu

···

On Thu, 30 Mar 2006, John Hunter wrote: