Switch from pip_missing_reqs to pip_check_reqs

The pip_missing_reqs tool is abandoned and now incompatible with
recent versions of pip. It has been supplanted by the pip_check_reqs
tool which provides the same pip-missing-reqs entrypoint (plus some
others), effectively renamed.

    https://github.com/r1chardj0n3s/pip-check-reqs/commit/99c5628
    https://ask.openstack.org/question/105026

Change-Id: I3fab8439891fab7ca837230dfccf89e4c0a7190c
This commit is contained in:
Jeremy Stanley 2017-04-04 14:43:17 +00:00
parent 48f9c365be
commit 44ea834438

View File

@ -196,7 +196,7 @@ import_exceptions = nova.i18n
# determining missing packages
# this also means that pip-missing-reqs must be installed separately, outside
# of the requirements.txt files
deps = pip_missing_reqs
deps = pip_check_reqs
commands=pip-missing-reqs -d --ignore-file=nova/tests/* --ignore-file=nova/test.py nova
[testenv:bindep]