problem with logic determining version numbers?

Hi MPL developers,

I use an older matplotlib version but this code is the same in SVN, so I thought
I'll mention it.

Thanks,
Nadia

In [1]: from matplotlib import pyplot as plt

···

---------------------------------------------------------------------------
ImportError Traceback (most recent call last)

/tangra/data1/dev/spectra/center1d/center1d/matplotlib/__init__.py in <module>()
     149 if not (int(nn[0]) >= 1 and int(nn[1]) >= 1):
     150 raise ImportError(
--> 151 'numpy 1.1 or later is required; you have %s' % numpy.__version__)
     152
     153 def is_string_like(obj):

ImportError: numpy 1.1 or later is required; you have 2.0.0.dev8107

Nadia Dencheva wrote:

Hi MPL developers,

I use an older matplotlib version but this code is the same in SVN, so I thought
I'll mention it.

ImportError: numpy 1.1 or later is required; you have 2.0.0.dev8107

Thanks Nadia. Fixed in svn r8128.

-Andrew