Re: [matplotlib-devel] release?

2007-06-02 Thread John Hunter
On 6/1/07, Andrew Straw <[EMAIL PROTECTED]> wrote:
> Charlie Moad wrote:
> > I have time to cut a release tomorrow.  Are there any outstanding
> > issues that I should wait on?
> >
> I just committed a change that raises a DeprecationWarning on use of
> numarray or Numeric as the numerix backend -- we agreed on this back in
> early April.

Excellent, thanks.  I will update the website "news flash" saying the
same.  Charlie, full speed ahead with 0.90.1 and 0.91 will be numpy
only.

Thanks!
JDH

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Matplotlib-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel


[matplotlib-devel] ANN: matplotlib-0.90.1

2007-06-02 Thread Charlie Moad
http://cheeseshop.python.org/pypi/matplotlib/

http://sourceforge.net/project/showfiles.php?group_id=80706&package_id=82474

===
2007-06-02 Released 0.90.1 at revision 3352

2007-06-02 Display only meaningful labels when calling legend()
   without args. - NN

2007-06-02 Have errorbar follow the color cycle even if line is not plotted.
   Suppress plotting of errorbar caps for capsize=0. - NN

2007-06-02 Set markers to same alpha value as line. - NN

2007-06-02 Fix mathtext position in svg backend. - NN

2007-06-01 Deprecate Numeric and numarray for use as numerix. Props to
   Travis -- job well done. - ADS

2007-05-18 Added LaTeX unicode support. Enable with the
   'text.latex.unicode' rcParam. This requires the ucs and
   inputenc LaTeX packages. - ADS

2007-04-23 Fixed some problems with polar -- added general polygon
   clipping to clip the lines a nd grids to the polar axes.
   Added support for set_rmax to easily change the maximum
   radial grid.  Added support for polar legend - JDH

2007-04-16 Added Figure.autofmt_xdate to handle adjusting the bottom
   and rotating the tick labels for date plots when the ticks
   often overlap - JDH

2007-04-09 Beginnings of usetex support for pdf backend. -JKS

2007-04-07 Fixed legend/LineCollection bug. Added label support
   to collections. - EF

2007-04-06 Removed deprecated support for a float value as a gray-scale;
   now it must be a string, like '0.5'.  Added alpha kwarg to
   ColorConverter.to_rgba_list. - EF

2007-04-06 Fixed rotation of ellipses in pdf backend
   (sf bug #1690559) -JKS

2007-04-04 More matshow tweaks; documentation updates; new method
   set_bounds() for formatters and locators. - EF

2007-04-02 Fixed problem with imshow and matshow of integer arrays;
   fixed problems with changes to color autoscaling. - EF

2007-04-01 Made image color autoscaling work correctly with
   a tracking colorbar; norm.autoscale now scales
   unconditionally, while norm.autoscale_None changes
   only None-valued vmin, vmax. - EF

2007-03-31 Added a qt-based subplot-adjustment dialog - DSD

2007-03-30 Fixed a bug in backend_qt4, reported on mpl-dev - DSD

2007-03-26 Removed colorbar_classic from figure.py; fixed bug in
   Figure.clf() in which _axobservers was not getting
   cleared.  Modernization and cleanups. - EF

2007-03-26 Refactored some of the units support -- units now live in
   the respective x and y Axis instances.  See also
   API_CHANGES for some alterations to the conversion
   interface.  JDH

2007-03-25 Fix masked array handling in quiver.py for numpy. (Numeric
   and numarray support for masked arrays is broken in other
   ways when using quiver. I didn't pursue that.) - ADS

2007-03-23 Made font_manager.py close opened files. - JKS

2007-03-22 Made imshow default extent match matshow - EF

2007-03-22 Some more niceties for xcorr -- a maxlags option, normed
   now works for xcorr as well as axorr, usevlines is
   supported, and a zero correlation hline is added.  See
   examples/xcorr_demo.py.  Thanks Sameer for the patch.  -
   JDH

2007-03-21 Axes.vlines and Axes.hlines now create and returns a
   LineCollection, not a list of lines.  This is much faster.
   The kwarg signature has changed, so consult the docs.
   Modified Axes.errorbar which uses vlines and hlines.  See
   API_CHANGES; the return signature for these three functions
   is now different

2007-03-20 Refactored units support and added new examples - JDH

2007-03-19 Added Mike's units patch - JDH

2007-03-18 Matshow as an Axes method; test version matshow1() in
   pylab; added 'integer' Boolean kwarg to MaxNLocator
   initializer to force ticks at integer locations. - EF

2007-03-17 Preliminary support for clipping to paths agg - JDH

2007-03-17 Text.set_text() accepts anything convertible with '%s' - EF

2007-03-14 Add masked-array support to hist. - EF

2007-03-03 Change barh to take a kwargs dict and pass it to bar.
   Fixes sf bug #1669506.

2007-03-02 Add rc parameter pdf.inheritcolor, which disables all
   color-setting operations in the pdf backend. The idea is
   that you include the resulting file in another program and
   set the colors (both stroke and fill color) there, so you
   can use the same pdf file for e.g. a paper and a
   presentation and have them in the surrounding color. You
   will probably not want to draw figure and axis frames in
   that case, since they would be filled in the same color. - JKS

2007-02-26 Prevent building _wxagg.so with broken Mac OS X wxPython. - ADS

2007-02-23 Require setuptools for Python 2.3 - ADS

2007-02-22 WXAgg