From 100a9a342440eae331e7ccd990e71f14b956863a Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 21 Nov 2017 17:07:37 -0500 Subject: [PATCH] remove constraints arg from pip installation of self in releasenotes jobs We cannot use constraints when installing the current project because that makes it impossible to install the source for anything that appears in the constraints list. Change-Id: I6a9cdce650e47c9d88d36b11e3a57cc41bc92ca6 Signed-off-by: Doug Hellmann --- roles/ensure-reno/tasks/main.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/ensure-reno/tasks/main.yaml b/roles/ensure-reno/tasks/main.yaml index 0a057061..3f0b5561 100644 --- a/roles/ensure-reno/tasks/main.yaml +++ b/roles/ensure-reno/tasks/main.yaml @@ -57,5 +57,8 @@ # Try installing current repo in case it needs to be available for # example for version number calculation. Ignore any failures here. if [ -f setup.cfg ] ; then - $VENV/pip install $UPPER_CONSTRAINTS . || true + # NOTE(dhellmann): We do *NOT* use constraints here because + # that makes it impossible to install anything that is listed + # in the constraints list. + $VENV/pip install . || true fi