global: update vendored pyflakes from 0.7.3 to 1.5.0
MozReview-Commit-ID: HwxUUi0rL9W
#!/usr/bin/env bash
# Bail on any setup error
set -eu
ROOT=`pwd`
VENV=${ROOT}/venv
if [ ! -d ${VENV} ]; then
. ${ROOT}/testing/create-virtualenv
fi
cd ${ROOT}
# activate fails on read of PS1, which doesn't exist in non-interactive shell
set +u
source ${VENV}/bin/activate
set -u
# Note: pycrypto may not build on OSX with hombrew gmp unless you add:
# export CFLAGS='-I/usr/local/include -L/usr/local/lib'
pip install --upgrade --require-hashes -r deploy-requirements.txt
cd testing
python setup.py develop
cd ..