Author: dmeyer
Date: Wed Feb 6 16:08:12 2008
New Revision: 3039
Log:
latest changes need new Python 2.5 yield code
Modified:
trunk/popcorn/setup.py
Modified: trunk/popcorn/setup.py
==============================================================================
--- trunk/popcorn/setup.py (original)
+++ trunk/popcorn/setup.py Wed Feb 6 16:08:12 2008
@@ -29,6 +29,11 @@
# python imports
import sys
+# We require python 2.5 or later, so complain if that isn't satisfied.
+if sys.version.split()[0] < '2.5':
+ print "Python 2.5 or later required."
+ sys.exit(1)
+
try:
# kaa base imports
from kaa.distribution.core import setup, Extension
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog