[Oval-commits] r257 - trunk/oval-agent
Javier Fernandez-Sanguino Pen~a
jfs at alioth.debian.org
Tue Sep 4 22:24:44 UTC 2007
Author: jfs
Date: 2007-09-04 22:24:44 +0000 (Tue, 04 Sep 2007)
New Revision: 257
Modified:
trunk/oval-agent/setup.py
Log:
Fix build error, version needs to be a string, not a float. Also ask for 2.4
Modified: trunk/oval-agent/setup.py
===================================================================
--- trunk/oval-agent/setup.py 2007-09-04 22:24:11 UTC (rev 256)
+++ trunk/oval-agent/setup.py 2007-09-04 22:24:44 UTC (rev 257)
@@ -12,13 +12,13 @@
"""
import sys
-assert sys.version >= '2', "Install Python 2.0 or greater"
+assert sys.version >= '2.4', "Install Python 2.4 or greater"
from distutils.core import setup, Extension
import ovalClient
setup(
name = "ovalClient",
- version = ovalClient.version,
+ version = "%s" % ovalClient.version,
author = "Pavel Vinogradov",
author_email = "<oval-devel at lists.alioth.debian.org>",
url = "http://oval.alioth.debian.org",
More information about the Oval-commits
mailing list