[Scipy-svn] r5397 - branches/0.7.x/scipy/weave

scipy-svn at scipy.org scipy-svn at scipy.org
Thu Jan 8 09:46:13 EST 2009


Author: cdavid
Date: 2009-01-08 08:46:09 -0600 (Thu, 08 Jan 2009)
New Revision: 5397

Modified:
   branches/0.7.x/scipy/weave/build_tools.py
Log:
get_devstudio_version is not available in python since at least 2.4 :).

Modified: branches/0.7.x/scipy/weave/build_tools.py
===================================================================
--- branches/0.7.x/scipy/weave/build_tools.py	2009-01-08 12:38:03 UTC (rev 5396)
+++ branches/0.7.x/scipy/weave/build_tools.py	2009-01-08 14:46:09 UTC (rev 5397)
@@ -372,7 +372,7 @@
     except:
         #assume we're ok if devstudio exists
         import distutils.msvccompiler
-        version = distutils.msvccompiler.get_devstudio_version()
+        version = distutils.msvccompiler.get_build_version()
         if version:
             result = 1
     return result




More information about the Scipy-svn mailing list