Applying the following patch current matplotlib SVN compiles against
wxPython 2.8.1.1. The resulting module seems to work.
Kind regads
Berthold
svn diff setup.py
Index: setup.py
···
===================================================================
--- setup.py (Revision 3084)
+++ setup.py (Arbeitskopie)
@@ -261,7 +261,7 @@
print 'WXAgg\'s accelerator requires wxPython'
BUILD_WXAGG = 0
else:
- if getattr(wx, '__version__', '0.0')[0:3] < '2.8':
+ if getattr(wx, '__version__', '0.0')[0:3] <= '2.8':
BUILD_AGG = 1
build_wxagg(ext_modules, packages, NUMERIX,
not (isinstance(BUILD_WXAGG, str) # don't abort if BUILD_WXAGG
--