Author: ArcRiley
Date: 2008-05-13 23:17:56 -0400 (Tue, 13 May 2008)
New Revision: 1252

Modified:
   trunk/pysoy/setup-pyrex.py
Log:
Now accepts either 0.9.6.4 or >=0.9.7.2, since Greg fixed the dict bug


Modified: trunk/pysoy/setup-pyrex.py
===================================================================
--- trunk/pysoy/setup-pyrex.py  2008-05-12 20:24:43 UTC (rev 1251)
+++ trunk/pysoy/setup-pyrex.py  2008-05-14 03:17:56 UTC (rev 1252)
@@ -26,8 +26,10 @@
 from distutils.extension import Extension
 from Pyrex.Compiler import Main
 
-if Main.Version.version != '0.9.6.4':
-  raise SystemError('Pyrex version 0.9.6.4 is required, aborting.')
+if (Main.Version.version <  '0.9.6.4' or 
+    Main.Version.version == '0.9.7'   or 
+    Main.Version.version == '0.9.7.1' ) :
+  raise SystemError('Pyrex version 0.9.6.4 or >=0.9.7.2 is required.')
 
 version = 'Trunk'
 modules = {

_______________________________________________
PySoy-SVN mailing list
PySoy-SVN@pysoy.org
http://www.pysoy.org/mailman/listinfo/pysoy-svn

Reply via email to