summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJulien Danjou <julien@danjou.info>2014-11-25 17:04:37 +0100
committerJulien Danjou <julien@danjou.info>2014-12-02 09:57:52 +0100
commit414507227e71b2bd6123583fb55378c3686d14be (patch)
treecb1c29bde0bdc631eac17f705a53859a2a46f9b2 /tools
parent3864816fd6071f54ccbabd3e3837ee147b996161 (diff)
downloadtrove-414507227e71b2bd6123583fb55378c3686d14be.tar.gz
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
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 \