Re: [Matplotlib-users] using facecolor='None' for fill on Windows and Fedora

2008-05-16 Thread Bryan Fodness
I have updated to matplotlib 0.92.1 and numpy 1.0.4 and still receive an error. /space/work/Bryan$ ./Check_0.1.py Traceback (most recent call last): File ./Check_0.1.py, line 344, in module savefig(outfile) File /usr/lib/python2.5/site-packages/matplotlib/pylab.py, line 796, in savefig

Re: [Matplotlib-users] using facecolor='None' for fill on Windows and Fedora

2008-05-16 Thread Eric Firing
Bryan, It appears that you are not using the mpl version you think you are. When I look at colors.py for 0.92.1, it doesn't match your error message. What do you get when you do, from a python prompt: import matplotlib print matplotlib.__version__ You might try using locate pylab.py to find

Re: [Matplotlib-users] using facecolor='None' for fill on Windows and Fedora

2008-05-16 Thread Bryan Fodness
i didn't have 0.92.1, i have 0.91.2 [bryan@ ~]$ python Python 2.5.2 (r252:60911, May 13 2008, 22:14:05) [GCC 4.1.2 20070502 (Red Hat 4.1.2-12)] on linux2 Type help, copyright, credits or license for more information. import matplotlib matplotlib.__version__ '0.91.2' import numpy

Re: [Matplotlib-users] using facecolor='None' for fill on Windows and Fedora

2008-05-16 Thread Bryan Fodness
Thanks for your help! I was forcing it to look in an old location with, #!/usr/bin/python as my first line. On Fri, May 16, 2008 at 1:44 PM, Bryan Fodness [EMAIL PROTECTED] wrote: i didn't have 0.92.1, i have 0.91.2 [bryan@ ~]$ python Python 2.5.2 (r252:60911, May 13 2008,

Re: [Matplotlib-users] using facecolor='None' for fill on Windows and Fedora

2008-05-16 Thread Eric Firing
Bryan Fodness wrote: i didn't have 0.92.1, i have 0.91.2 Right, we were both transposing digits. [bryan@ ~]$ python Python 2.5.2 (r252:60911, May 13 2008, 22:14:05) [GCC 4.1.2 20070502 (Red Hat 4.1.2-12)] on linux2

[Matplotlib-users] using facecolor='None' for fill on Windows and Fedora

2008-05-09 Thread Bryan Fodness
i have used this command on windows vista with no problem. fill([x1,x2,x2,x1], [y1,y1,y2,y2], fc='None', ec='r') but when i run on fedora 8, i receive the following. (most recent call last): File ./program.py, line 361, in module savefig(outfile) File

Re: [Matplotlib-users] using facecolor='None' for fill on Windows and Fedora

2008-05-09 Thread Eric Firing
Bryan Fodness wrote: i have used this command on windows vista with no problem. fill([x1,x2,x2,x1], [y1,y1,y2,y2], fc='None', ec='r') but when i run on fedora 8, i receive the following. [...] File /usr/lib/python2.5/site-packages/matplotlib/colors.py, line 429, in tob