[matplotlib-devel] matplotlib 1.0.1rc available for testing, building

2011-01-02 Thread John Hunter
We are long overdue on getting a bugfix release of 1.0.0 out, so I have uploaded an rc for testing at https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.0.1/ Christoph and Russell -- if you have time could you build win32 and OSX binaries for testing as well. I don't belie

Re: [matplotlib-devel] matplotlib 1.0.1rc available for testing, building

2011-01-02 Thread Sandro Tosi
Hi John, On Sun, Jan 2, 2011 at 18:52, John Hunter wrote: > We are long overdue on getting a bugfix release of 1.0.0 out, so I have > uploaded an rc for testing at > > https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.0.1/ Maybe I just missed them, but I can't find in the

Re: [matplotlib-devel] matplotlib 1.0.1rc available for testing, building

2011-01-02 Thread John Hunter
On Sun, Jan 2, 2011 at 4:25 PM, Sandro Tosi wrote: > > > > https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.0.1/ > > > Maybe I just missed them, but I can't find in the tarball the data > files needed to run the examples without internet connection. I > thought it was dec

Re: [matplotlib-devel] matplotlib 1.0.1rc available for testing, building

2011-01-02 Thread Sandro Tosi
On Sun, Jan 2, 2011 at 23:50, John Hunter wrote: > I just added a sample data release file to the same dir -- > mpl_sampledata-1.0.1rc.tar.gz - different tarball, but should contain > everything you need.  Will this meet Debian's requirements?  We could add it > to the main tarball, but part of th

Re: [matplotlib-devel] matplotlib 1.0.1rc available for testing, building

2011-01-02 Thread Ben Gamari
On Sun, 2 Jan 2011 23:25:12 +0100, Sandro Tosi wrote: > Maybe I just missed them, but I can't find in the tarball the data > files needed to run the examples without internet connection. I > thought it was decided to ship them directly in the tarball and so use > the examples.directory rc option t

Re: [matplotlib-devel] matplotlib 1.0.1rc available for testing, building

2011-01-02 Thread Sandro Tosi
On Mon, Jan 3, 2011 at 00:21, Ben Gamari wrote: > On Sun, 2 Jan 2011 23:25:12 +0100, Sandro Tosi wrote: >> Maybe I just missed them, but I can't find in the tarball the data >> files needed to run the examples without internet connection. I >> thought it was decided to ship them directly in the t

[matplotlib-devel] patch: bug with twinx and scientific style

2011-01-02 Thread Paul Ivanov
I sent this to the -users list a little over a week ago - now resending to -devel list against the latest svn. best, -- Paul Ivanov 314 address only used for lists, off-list direct email at: http://pirsquared.org | GPG/PGP key id: 0x0F3E28F7 Paul Ivanov, on 2010-12-23 09:47, wrote: > Václav

Re: [matplotlib-devel] A quesstion with matplotlib

2011-01-02 Thread 余亮罡
Hi Ben: I just do not know how to change the font size,could you tell me that? Thank you ! At 2011-01-01 07:08:23,"Benjamin Root" wrote: 2010/12/31 余亮罡 Dear all, I have a quesstion about change the width of the ylabel.You know the width of the ylabel is relaete to the x axi,how can i ch

Re: [matplotlib-devel] A quesstion with matplotlib

2011-01-02 Thread Paul Ivanov
余亮罡, on 2011-01-03 13:31, wrote: > I just do not know how to change the font size,could you tell > me that? Thank you ! Here's a small example. You can either keep around the ylabel from when you first create it: import matplotlib.pyplot as plt lbl = plt.ylabel("foo") lbl.set_size(25) If