From: <ef...@us...> - 2010-05-30 21:15:53
|
Revision: 8346 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8346&view=rev Author: efiring Date: 2010-05-30 21:15:47 +0000 (Sun, 30 May 2010) Log Message: ----------- close 3009264; allow windows build on python 2.7; thanks to Christoph Gohlke Modified Paths: -------------- trunk/matplotlib/setupext.py Modified: trunk/matplotlib/setupext.py =================================================================== --- trunk/matplotlib/setupext.py 2010-05-30 20:30:47 UTC (rev 8345) +++ trunk/matplotlib/setupext.py 2010-05-30 21:15:47 UTC (rev 8346) @@ -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]: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |