On Thu, Nov 27, 2008 at 12:55 PM, Ionut Vancea <[EMAIL PROTECTED]> wrote: > > Hi, > > a new problem in file "fipy/tools/numerix.py" I had to replace: > > "from numpy.core import ma as MA" with "from numpy import ma as MA"
The current version of numerix should attempt one method and fall back on the other. <http://matforge.org/fipy/browser/trunk/fipy/tools/numerix.py#L76> For my current version of numpy, both import methods seem to work >>> import numpy >>> numpy.__version__ '1.2.1' >>> from numpy.core import ma as MA >>> from numpy import ma as MA without an issue. What version of numpy are you using and which revision of fipy? -- Daniel Wheeler
