Skip to content

Commit

Permalink
Removed python 3.3 dependency
Browse files Browse the repository at this point in the history
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 coala#35

Closes coala#57
  • Loading branch information
paniabhisek committed Dec 13, 2016
1 parent 52be587 commit 8550e48
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .ci/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
done

0 comments on commit 8550e48

Please sign in to comment.