From 06b5321eda7437c9a0bf150b8b6704385463a9e5 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Thu, 26 Jul 2018 20:27:03 +0200 Subject: [PATCH] Remove bindep pin Without this patch, we are stuck to an old version of bindep and distro. There is no reason to pin or patch bindep anymore. This is a problem because more recent distributions like opensuse leap 15 will have profile detection issues. This should fix it. Change-Id: Ia3637b3801590cda92be433ca3ba79f62e15512a --- scripts/install.sh | 4 ++-- scripts/requirements.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index bb399619..85ef6223 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -49,7 +49,7 @@ fi $(dirname $0)/fetch_wheels.sh if [[ "${PROJECT}" == "infra" ]]; then $(dirname $0)/setup_pip.sh - $(dirname $0)/pip_install.sh bindep==2.6.0 ${PIP_PACKAGES} + $(dirname $0)/pip_install.sh bindep ${PIP_PACKAGES} $(dirname $0)/install_packages.sh $(dirname $0)/cleanup.sh exit 0 @@ -57,7 +57,7 @@ fi if [[ "${PLUGIN}" == "no" ]]; then $(dirname $0)/create_user.sh $(dirname $0)/setup_pip.sh - $(dirname $0)/pip_install.sh bindep==2.6.0 + $(dirname $0)/pip_install.sh bindep PACKAGES=($(bindep -f /opt/loci/pydep.txt -b -l newline ${PROJECT} ${PROFILES} ${python3} || :)) $(dirname $0)/pip_install.sh ${PACKAGES[@]} fi diff --git a/scripts/requirements.sh b/scripts/requirements.sh index f1a9fbb3..176b4852 100755 --- a/scripts/requirements.sh +++ b/scripts/requirements.sh @@ -3,7 +3,7 @@ set -eux $(dirname $0)/setup_pip.sh -pip install bindep==2.6.0 +pip install bindep $(dirname $0)/install_packages.sh $(dirname $0)/clone_project.sh