summaryrefslogtreecommitdiff
path: root/tools/install_venv_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/install_venv_common.py')
-rw-r--r--tools/install_venv_common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/install_venv_common.py b/tools/install_venv_common.py
index e279159a..962b2f93 100644
--- a/tools/install_venv_common.py
+++ b/tools/install_venv_common.py
@@ -17,7 +17,7 @@
virtual environments.
Since this script is used to bootstrap a virtualenv from the system's Python
-environment, it should be kept strictly compatible with Python 2.6.
+environment, it should be kept strictly compatible with Python 2.7.
Synced in from openstack-common
"""
@@ -47,8 +47,8 @@ class InstallVenv(object):
sys.exit(1)
def check_python_version(self):
- if sys.version_info < (2, 6):
- self.die("Need Python Version >= 2.6")
+ if sys.version_info < (2, 7):
+ self.die("Need Python Version >= 2.7")
def run_command_with_code(self, cmd, redirect_output=True,
check_exit_code=True):