From 8550e48877ded8f48cba1b492702e4cb681c4948 Mon Sep 17 00:00:00 2001 From: Abhisek Kumar Panigrahi Date: Tue, 13 Dec 2016 23:34:28 +0530 Subject: [PATCH] Removed python 3.3 dependency Changed the file .ci/deps.sh so that it doesn't support python3.3 anymore as python3.3 hasn't been supported by coala for a long time. see https://github.com/coala/coala-quickstart/issues/35 Closes https://github.com/coala/coala-quickstart/issues/57 --- .ci/deps.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.ci/deps.sh b/.ci/deps.sh index 8221193..c0f5a0a 100644 --- a/.ci/deps.sh +++ b/.ci/deps.sh @@ -3,9 +3,8 @@ set -x # Choose the python versions to install deps for case $CIRCLE_NODE_INDEX in - *) dep_versions=( "3.3.6" ) ;; - 1) dep_versions=( "3.4.3" ) ;; - 2) dep_versions=( "3.5.1" ) ;; + *) dep_versions=( "3.4.3" ) ;; + 1) dep_versions=( "3.5.1" ) ;; esac for dep_version in "${dep_versions[@]}" ; do @@ -16,4 +15,4 @@ for dep_version in "${dep_versions[@]}" ; do pip3 install -q -r test-requirements.txt pip3 install -q -r requirements.txt -done \ No newline at end of file +done