py2.3 build fix
authorStefan Behnel <scoder@users.berlios.de>
Thu, 11 Mar 2010 08:59:05 +0000 (09:59 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 11 Mar 2010 08:59:05 +0000 (09:59 +0100)
setup.py

index 9a9e02f37e35a1efaa5f110c22e5718083337965..97412e0b66d116b34edc9c2f77c7137aa36fe475 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,9 +3,9 @@ from distutils.sysconfig import get_python_lib
 import os, os.path
 import sys
 
-if 'sdist' in sys.argv and sys.platform != "win32":
+if 'sdist' in sys.argv and sys.platform != "win32" and sys.version_info >= (2,4):
     # Record the current revision in .hgrev
-    import subprocess # os.popen is cleaner but depricated
+    import subprocess # os.popen is cleaner but deprecated
     changset = subprocess.Popen("hg log --rev tip | grep changeset", 
                                 shell=True,
                                 stdout=subprocess.PIPE).stdout.read()