commit 8894939d5da6a07850ff238d1453601d41f178f4 Author: Philipp Winter phw@nymity.ch Date: Tue Aug 6 11:40:38 2019 -0700
Update PIP_FLAGS to fix Travis CI update. --- scripts/install-dependencies | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/scripts/install-dependencies b/scripts/install-dependencies index 189cf53..cffef18 100755 --- a/scripts/install-dependencies +++ b/scripts/install-dependencies @@ -6,16 +6,7 @@ SUDO= APT_GET=$(which apt-get) APT_FLAGS='-q --no-install-suggests --no-install-recommends' PIP=$(which pip) -PIP_FLAGS= - -# If this doesn't work, then the version of pip is very old and we need to use --no-use-wheel -$PIP --no-binaries :all: - -if test "$?" -eq 2 ; then - PIP_FLAGS=$PIP_FLAGS' --no-use-wheel' -else - PIP_FLAGS=$PIP_FLAGS' --no-binaries :all:' -fi +PIP_FLAGS='--no-binary :all'
DEPENDS="build-essential openssl sqlite3 python-dev python-setuptools" DEPENDS="${DEPENDS} libgeoip-dev geoip-database libjpeg-dev"