Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b62c9bd

Browse files
committed
syncing to 0.65.1
svn path=/trunk/matplotlib/; revision=809
1 parent 6c96389 commit b62c9bd

4 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
New entries should be added at the top
22

3+
======================================================================
4+
5+
2004-12-22 0.65.1 released - JDH
6+
37
2004-12-22 Fixed colorbar bug which caused colorbar not to respond to
48
changes in colormap in some instances - JDH
59

@@ -12,16 +16,16 @@ New entries should be added at the top
1216
toolbar updates are done via an observer pattern on the
1317
figure using add_axobserver. Figure now maintains the axes
1418
stack (for gca) and supports axes deletion. Ported changes
15-
to GTK, Tk, Wx, and FLTK. Please test! JDH
19+
to GTK, Tk, Wx, and FLTK. Please test! Added delaxes - JDH
1620

1721
2004-12-21 Lots of image optimizations - 4x performance boost over
1822
0.65 JDH
1923

2024
2004-12-20 Fixed a figimage bug where the axes is shown and modified
2125
tkagg to move the destroy binding into the show method.
2226

23-
2004-12-18 Minor refactoring of tkagg toolbar to support embedding in
24-
an application - JDH
27+
2004-12-18 Minor refactoring of NavigationToolbar2 to support
28+
embedding in an application - JDH
2529

2630
2004-12-14 Added linestyle to collections (currently broken) - JDH
2731

MANIFEST

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ CHANGELOG
44
INSTALL
55
INTERACTIVE
66
KNOWN_BUGS
7-
MANIFEST
87
MANIFEST.in
98
Makefile
109
README

examples/backend_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def drive(backend, python='python2.3'):
105105
backends = ['Agg', 'SVG', 'PS', 'Template']
106106
#backends = [ 'GTK', 'WX', 'TkAgg']
107107

108-
python = 'python2.3'
108+
python = 'python2.2'
109109
for backend in backends:
110110
print 'testing %s' % backend
111111
t0 = time.time()

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
"""
2+
Note! If you are building for python2.2, you must comment out the
3+
py_modules line below and manually copy lib/pylab.py to
4+
site-packages/pylab.py
5+
26
You will need to have freetype, libpng and zlib installed to compile
37
matplotlib, inlcuding the *-devel versions of these libraries if you
48
are using a package manager like RPM or debian.
@@ -53,6 +57,11 @@
5357
build_ft2font, build_image, build_windowing, build_transforms, build_contour
5458
import distutils.sysconfig
5559

60+
major, minor1, minor2, s, tmp = sys.version_info
61+
62+
if major==2 and minor1==2:
63+
print >> sys.stderr, "***\n\nWARNING, see build info for python2.2 in the header of setup.py\n\n***"
64+
5665
for line in file('lib/matplotlib/__init__.py').readlines():
5766
if line[:11] == '__version__':
5867
exec(line)

0 commit comments

Comments
 (0)