Re: [matplotlib-devel] experimental MPL git mirror online

2008-12-04 Thread Michael Droettboom
Has anyone had any success installing git-svn on a managed machine without root priviledges? It seems that the Perl Alien::SVN dependency is totally broken in that context. Mike Andrew Straw wrote: > I just put my git mirror of the matplotlib svn repository online. This > is experimental in na

Re: [matplotlib-devel] experimental MPL git mirror online

2008-12-04 Thread John Hunter
On Wed, Dec 3, 2008 at 8:12 PM, Andrew Straw <[EMAIL PROTECTED]> wrote: > I just put my git mirror of the matplotlib svn repository online. This > is experimental in nature. Thanks to github for hosting this project. > Anyhow, I added instructions for how to use this (including to interact > with t

Re: [matplotlib-devel] experimental MPL git mirror online

2008-12-04 Thread Andrew Straw
Hi John, Michael just wrote me that he got the same error. I think that perhaps I need to assign write permissions even to read using the "personal" URL. For now, can you try the public clone URL git://github.com/astraw/matplotlib.git instead? I will attempt to sort this out... (And of course give

Re: [matplotlib-devel] release? no, this time really I mean it

2008-12-04 Thread Charlie Moad
Works for me. Let's aim for Saturday night so we have Sunday to test it out. Doable? - Charlie On Wed, Dec 3, 2008 at 9:29 PM, John Hunter <[EMAIL PROTECTED]> wrote: > Despite my occasional recent murmurings to get a release out, which > fall by the wayside as more pressing matters arise, I rea

Re: [matplotlib-devel] release? no, this time really I mean it

2008-12-04 Thread John Hunter
On Thu, Dec 4, 2008 at 12:38 PM, Charlie Moad <[EMAIL PROTECTED]> wrote: > Works for me. Let's aim for Saturday night so we have Sunday to test > it out. Doable? Great -- everyone please hold off adding any significant features before the release and focus any mpl time you have on outstanding bu

Re: [matplotlib-devel] experimental MPL git mirror online

2008-12-04 Thread Andrew Straw
I updated the documentation to hopefully address the issue that John (and Michael) had. I also moved the git documentation to a section in doc/faq/installing_faq.rst. And I noticed that github does automatic parsing of rst files. Check this out -- Sweet! :) http://github.com/astraw/matplotlib/tree

[matplotlib-devel] Installing git and git-svn from source

2008-12-04 Thread Michael Droettboom
Getting git-svn installed without root privileges is truly epic, given there are virtually no installation instructions for it, and its homepage seems to be down. This doesn't bode well for git-svn adoption in managed environments like mine where users don't have root. In fairness, the hard b

[matplotlib-devel] pyplot.fill() and masked arrays

2008-12-04 Thread Ryan May
Hi, Is there any reason pyplot.fill() doesn't support masked arrays? Or was it just overlooked? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- SF.Net email is Sponsored

Re: [matplotlib-devel] pyplot.fill() and masked arrays

2008-12-04 Thread Eric Firing
Ryan May wrote: > Hi, > > Is there any reason pyplot.fill() doesn't support masked arrays? Or was it > just > overlooked? > I think the reason is that it is not obvious what any filled region with masked vertices should look like. Eric --

Re: [matplotlib-devel] pyplot.fill() and masked arrays

2008-12-04 Thread Ryan May
Ryan May wrote: > Hi, > > Is there any reason pyplot.fill() doesn't support masked arrays? Or was > it just overlooked? Looks like this is better handled by fill_between, nevermind. Now, what about dates? I'm having problems using dates for the x-axis for fill_between. I know I can use date

Re: [matplotlib-devel] pyplot.fill() and masked arrays

2008-12-04 Thread Eric Firing
Ryan May wrote: > Ryan May wrote: >> Hi, >> >> Is there any reason pyplot.fill() doesn't support masked arrays? Or was >> it just overlooked? > > Looks like this is better handled by fill_between, nevermind. > > Now, what about dates? I'm having problems using dates for the x-axis for > fill_

Re: [matplotlib-devel] reimplemented legend class

2008-12-04 Thread Jae-Joon Lee
John, I just committed changes to SVN that reflect most of your comments. I didn't add the optional transformation support yet though. On Tue, Dec 2, 2008 at 7:45 AM, John Hunter <[EMAIL PROTECTED]> wrote: > On Mon, Dec 1, 2008 at 6:00 PM, Jae-Joon Lee <[EMAIL PROTECTED]> wrote: > >> As implemen