From: Charlie M. <cw...@gm...> - 2006-01-10 21:01:13
|
Latest release of matplotlib available with the usual slew of updates. Notable changes are: - Support for numpy (was scipy_core) - Support for setuptools (eggs to appear soon on cheeseshop) -- more on eggs: http://peak.telecommunity.com/DevCenter/setuptoo= ls - Matplotlib data files moved inside the matplotlib module for better portability http://sourceforge.net/project/showfiles.php?group_id=3D80706&package_id=3D= 82474&release_id=3D384391 http://cheeseshop.python.org/pypi/matplotlib/ Full changelog below.... =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 2006-1-9 Released 0.86 2006-1-4 Changed to support numpy (new name for scipy_core) - TEO 2006-1-4 Added Mark's scaled axes patch for shared axis 2005-12-28 Added Chris Barker's build_wxagg patch - JDH 2005-12-27 Altered numerix/scipy to support new scipy package structure - TEO 2005-12-20 Fixed Jame's Boyles date tick reversal problem - JDH 2005-12-20 Added Jouni's rc patch to support lists of keys to set on - JDH 2005-12-12 Updated pyparsing and mathtext for some speed enhancements (Thanks Paul McGuire) and minor fixes to scipy numerix and setuptools 2005-12-12 Matplotlib data is now installed as package_data in the matplotlib module. This gets rid of checking the many possibilities in matplotlib._get_data_path() - CM 2005-12-11 Support for setuptools/pkg_resources to build and use matplotlib as an egg. Still allows matplotlib to exist using a traditional distutils install. - ADS 2005-12-03 Modified setup to build matplotlibrc based on compile time findings. It will set numerix in the order of scipy, numarray, Numeric depending on which are founds, and backend as in preference order GTKAgg, WXAgg, TkAgg, GTK, Agg, PS 2005-12-03 Modified scipy patch to support Numeric, scipy and numarray =09 Some work remains to be done because some of the scipy =09 imports are broken if only the core is installed. Eg =09 apparently we need from scipy.basic.fftpack import * rather =09 than from scipy.fftpack import * 2005-12-03 Applied some fixes to Nicholas Young's nonuniform image patch 2005-12-01 Applied Alex Gontmakher hatch patch - PS only for now 2005-11-30 Added Rob McMullen's EMF patch 2005-11-30 Added Daishi's patch for scipy 2005-11-30 Fixed out of bounds draw markers segfault in agg 2005-11-28 Got TkAgg blitting working 100% (cross fingers) correctly. - CM 2005-11-27 Multiple changes in cm.py, colors.py, figure.py, image.py, contour.py, contour_demo.py; new _cm.py, examples/image_masked.p= y. 1) Separated the color table data from cm.py out into a new file, _cm.py, to make it easier to find the actual code in cm.py and to add new colormaps. Also added some line breaks to the color data dictionaries. Everything from _cm.py is imported by cm.py, so the split should be transparent. 2) Enabled automatic generation of a colormap from a list of colors in contour; see modified examples/contour_demo.py. 3) Support for imshow of a masked array, with the ability to specify colors (or no color at all) for masked regions, and for regions that are above or below the normally mapped region. See examples/image_masked.py. 4) In support of the above, added two new classes, ListedColormap, and no_norm, to colors.py, and modified the Colormap class to include common functionality. Added a clip kwarg to the normalize class. Reworked color handling in contour.py, especially in the ContourLabeller mixin. - EF 2005-11-25 Changed text.py to ensure color is hashable. EF |