summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/install_venv.py4
-rwxr-xr-xtools/start-fake-mode.sh6
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 3af55bce..ef44431f 100755
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -40,8 +40,8 @@ def die(message, *args):
def check_python_version():
- if sys.version_info < (2, 6):
- die("Need Python Version >= 2.6")
+ if sys.version_info < (2, 7):
+ die("Need Python Version >= 2.7")
def run_command(cmd, redirect_output=True, check_exit_code=True):
diff --git a/tools/start-fake-mode.sh b/tools/start-fake-mode.sh
index 761964a7..250a2743 100755
--- a/tools/start-fake-mode.sh
+++ b/tools/start-fake-mode.sh
@@ -2,12 +2,12 @@
# Arguments: Use --pid_file to specify a pid file location.
-if [ ! -d ".tox/py26" ]; then
- tox -epy26
+if [ ! -d ".tox/py27" ]; then
+ tox -epy27
fi
function run() {
- .tox/py26/bin/python $@
+ .tox/py27/bin/python $@
}
run bin/trove-manage \
--config-file=etc/trove/trove.conf.test db_recreate \