On 5/17/2010 12:13 PM, Ryan Wagner wrote: > > Does anyone know if/when MPL will be supported on Python 2.7? Thanks!
I built matplotlib 1.0.svn for Python 2.7b2 (32 and 64-bit) against numpy 2.0.dev using the attached patch. Unofficial Windows installers are at <http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib>. It works for me but I would not recommend to use it in a production environment: Python 2.7, matplotlib 1.0, numpy 2.0, PyGTK-py2.7 and PyQt4-py2.7 are not released yet. -- Christoph Index: setupext.py =================================================================== --- setupext.py (revision 8316) +++ setupext.py (working copy) @@ -997,7 +997,7 @@ message = None if sys.platform == 'win32': major, minor1, minor2, s, tmp = sys.version_info - if major == 2 and minor1 == 6: + if major == 2 and minor1 in (6, 7): module.include_dirs.extend(['win32_static/include/tcl85']) module.libraries.extend(['tk85', 'tcl85']) elif major == 2 and minor1 in [3, 4, 5]: ------------------------------------------------------------------------------ _______________________________________________ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel