summaryrefslogtreecommitdiff
path: root/ci/setup
blob: 39218490abf3fe343e2e5a323f47546d9709176f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash -eu

pip install $DJANGO
make bootstrap
if [[ ${TRAVIS_PYTHON_VERSION::1} == '2' ]]; then
	pip install gevent
fi
if [[ ${TRAVIS_PYTHON_VERSION} == '3.2' ]]; then
	pip install -I https://github.com/celery/celery/archive/3.0.zip
fi
if [[ ${TRAVIS_PYTHON_VERSION::1} == '3' ]]; then
	pip uninstall django-celery -y
fi