On Fri, Apr 25, 2008 at 6:26 AM, Antonio Gonzalez <[EMAIL PROTECTED]> wrote:

>  Thanks for the replies. I'm now using numpy svn and all works well.
>  May I suggest, then -- maybe a warning should indeed arise at build
>  time? Currently, mpl svn recognises non-svn numpy as an acceptable
>  'required dependency' during the building process (as reported at the
>  beginning of the 'python setup.py build' output).

Done in r5074.  I don't have an older numpy lying around to test my
changes, but I think I got it right.  In check_for_numpy:

    major, minor1, minor2 = map(int, numpy.__version__.split('.')[:3])
    if major<1 or (major==1 and minor1<1):
        print_status("numpy version", "no")
        print_message("You must install numpy 1.1 or later to build
matplotlib.")

        return False


JDH

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to