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

Skip to content

Commit 6042a4a

Browse files
committed
more prep for 0.86 release
svn path=/trunk/matplotlib/; revision=1937
1 parent 61e460f commit 6042a4a

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

API_CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2+
3+
API Changes in matplotlib-0.86
4+
15
Matplotlib data is installed into the matplotlib module.
26
This is similar to package_data. This should get rid of
37
having to check for many possibilties in _get_data_path().

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
=======================================================================
2+
2006-1-9 Released 0.86
3+
14
2006-1-4 Changed to support numpy (new name for scipy_core) - TEO
25

36
2006-1-4 Added Mark's scaled axes patch for shared axis

setupext.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,11 @@ def add_wx_flags(module, wxconfig):
253253
"""
254254

255255
if sys.platform == 'win32': # just added manually
256-
module.libraries.extend(['wxmsw26', 'wxpng', 'wxregex', 'wxzlib', 'wxexpat', 'wxjpeg', 'wxtiff'])
256+
wxlibs = ['wxexpath', 'wxjpegh', 'wxmsw26uh',
257+
'wxmsw26uh_animate', 'wxmsw26uh_gizmos', 'wxmsw26uh_gizmos_xrc',
258+
'wxmsw26uh_gl', 'wxmsw26uh_stc', 'wxpngh', 'wxregexuh', 'wxtiffh', 'wxzlibh']
259+
module.libraries.extend(wxlibs)
260+
module.libraries.extend(wxlibs)
257261
return
258262

259263
def getWX(fmt, *args):

0 commit comments

Comments
 (0)