From: John H. <jd...@gm...> - 2009-03-11 18:43:17
|
a On Wed, Mar 11, 2009 at 1:29 PM, Jonathan Taylor < jon...@ut...> wrote: > Hi John, > > You should be able to check out a copy from my git repo via > > git clone http://jonathantaylor.ca/mplot3d.git > cd mplot3d > git pull OK thanks. Just a word of warning. It appears you are developing against an older version of mpl (0.98?). For example, matplotlib.text.TextWithDash used in axis3d has been removed from svn HEAD. The attribute self._autoscaleon in axes3d is no longer available (use self.get_autoscale_on()) As soon as feasible, I suggest getting a svn co of mpl HEAD and working with that, to speed integration with the main line. You could resurrect TextWithDash internally for mplot3d if you want, but we found it difficult to maintain. JDH |