From a7d7f85e40ca4ba58c02d4f8bf17f1f74bc6e54a Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Fri, 7 Dec 2012 17:16:02 -0800 Subject: [PATCH] Marvin doesn't require python 2.7, the tests do To compile marvin using maven any standard python interpreter above 2.4 is sufficient. The tests under test/integration will need 2.7 to run. Signed-off-by: Prasanna Santhanam 1354929362 -0800 --- tools/marvin/setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index f0de384bfea..fea53d07f8a 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -20,10 +20,6 @@ from setuptools import setup from sys import version import sys -if version < "2.7": - print "Marvin needs at least python 2.7, found : \n%s"%version - sys.exit(1) - setup(name="Marvin", version="0.1.0", description="Marvin - Python client for testing cloudstack",