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 <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2017-11-21 17:07:37 -05:00
parent c3d6c60a6f
commit 100a9a3424

View File

@ -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