New compile to match numpy-0.9.8.
win32-py2.4 coming tomorrow morning...
http://cheeseshop.python.org/pypi/matplotlib/
http://sourceforge.net/project/showfiles.php?group_id=80706
===
2006-06-06 Released 0.87.3 at revision 2432
2006-05-30 More partial support for polygons with outline or fill,
but not both. Made LineCollection inherit from
ScalarMappable. - EF
2006-05-29 Yet another revision of aspect-ratio handling. - EF
2006-05-27 Committed a patch to prevent stroking zero-width lines in
the svg backend - DSD
2006-05-24 Fixed colorbar positioning bug identified by Helge
Avlesen, and improved the algorithm; added a 'pad'
kwarg to control the spacing between colorbar and
parent axes. - EF
2006-05-23 Changed color handling so that collection initializers
can take any mpl color arg or sequence of args; deprecated
float as grayscale, replaced by string representation of
float. - EF
2006-05-19 Fixed bug: plot failed if all points were masked - EF
2006-05-19 Added custom symbol option to scatter - JDH
2006-05-18 New example, multi_image.py; colorbar fixed to show
offset text when the ScalarFormatter is used; FixedFormatter
augmented to accept and display offset text. - EF
2006-05-14 New colorbar; old one is renamed to colorbar_classic.
New colorbar code is in colorbar.py, with wrappers in
figure.py and pylab.py.
Fixed aspect-handling bug reported by Michael Mossey.
Made backend_bases.draw_quad_mesh() run.- EF
2006-05-08 Changed handling of end ranges in contourf: replaced
"clip-ends" kwarg with "extend". See docstring for
details. -EF
2006-05-08 Added axisbelow to rc - JDH
2006-05-08 If using PyGTK require version 2.2+ - SC
2006-04-19 Added compression support to PDF backend, controlled by
new pdf.compression rc setting. - JKS
2006-04-19 Added Jouni's PDF backend
2006-04-18 Fixed a bug that caused agg to not render long lines
2006-04-16 Masked array support for pcolormesh; made pcolormesh support the
same combinations of X,Y,C dimensions as pcolor does;
improved (I hope) description of grid used in pcolor,
pcolormesh. - EF
2006-04-14 Reorganized axes.py - EF
2006-04-13 Fixed a bug Ryan found using usetex with sans-serif fonts and
exponential tick labels - DSD
2006-04-11 Refactored backend_ps and backend_agg to prevent module-level
texmanager imports. Now these imports only occur if text.usetex
rc setting is true - DSD
2006-04-10 Committed changes required for building mpl on win32
platforms with visual studio. This allows wxpython
blitting for fast animations. - CM
2006-04-10 Fixed an off-by-one bug in Axes.change_geometry.
2006-04-10 Fixed bug in pie charts where wedge wouldn't have label in
legend. Submitted by Simon Hildebrandt. - ADS
2006-05-06 Usetex makes temporary latex and dvi files in a temporary
directory, rather than in the user's current working
directory - DSD
2006-04-05 Apllied Ken's wx deprecation warning patch closing sf patch
#1465371 - JDH
2006-04-05 Added support for the new API in the postscript backend.
Allows values to be masked using nan's, and faster file
creation - DSD
2006-04-05 Use python's subprocess module for usetex calls to
external programs. subprocess catches when they exit
abnormally so an error can be raised. - DSD
2006-04-03 Fixed the bug in which widgets would not respond to
events. This regressed the twinx functionality, so I
also updated subplots_adjust to update axes that share
an x or y with a subplot instance. - CM
2006-04-02 Moved PBox class to transforms and deleted pbox.py;
made pylab axis command a thin wrapper for Axes.axis;
more tweaks to aspect-ratio handling; fixed Axes.specgram
to account for the new imshow default of unit aspect
ratio; made contour set the Axes.dataLim. - EF
2006-03-31 Fixed the Qt "Underlying C/C++ object deleted" bug. - JRE
2006-03-31 Applied Vasily Sulatskov's Qt Navigation Toolbar enhancement. - JRE
2006-03-31 Ported Norbert's rewriting of Halldor's stineman_interp
algorithm to make it numerix compatible and added code to
matplotlib.mlab. See examples/interp_demo.py - JDH
2006-03-30 Fixed a bug in aspect ratio handling; blocked potential
crashes when panning with button 3; added axis('image')
support. - EF
2006-03-28 More changes to aspect ratio handling; new PBox class
in new file pbox.py to facilitate resizing and repositioning
axes; made PolarAxes maintain unit aspect ratio. - EF
2006-03-23 Refactored TextWithDash class to inherit