From 414507227e71b2bd6123583fb55378c3686d14be Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 25 Nov 2014 17:04:37 +0100 Subject: Remove Python 2.6 classifier Trove does not support Python 2.6 anymore starting with Kilo and might not work correctly with it, so remove the classifier. Change-Id: Ida17ce3ce76258442222b591846e1e1717119eed --- tools/install_venv.py | 4 ++-- tools/start-fake-mode.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'tools') 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 \ -- cgit v1.2.1