Support for Python 2.7?

Does anyone know if/when MPL will be supported on Python
2.7? Thanks!

-Ryan

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 <Archived: Python Extension Packages for Windows - Christoph Gohlke. 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.

ยทยทยท

On 5/17/2010 12:13 PM, Ryan Wagner wrote:

Does anyone know if/when MPL will be supported on Python 2.7? Thanks!

--
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]: