From e8daa0f2701eed284bb9e032b6c85446245b2765 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Wed, 10 Jun 2020 08:24:07 -0500 Subject: [PATCH] Add virtualbmc as an extra dependency The virtualbmc package is only needed in CI runs, so it doesn't quite fit as a declared "normal" dependency of the project. But requirements tooling only looks in [test-]requirements.txt and setup.cfg when checking if a package is being used, so since it has not been declared in any of these so far, it gets flagged as an unused dependency. This is a workaround to fix this issue. It likely will never be installed through this extra requirement path, but it will ensure the package gets recognized as something being used by our projects. Change-Id: Id7eb44954308b10d6097ee9894d58867fde6804b Signed-off-by: Sean McGinnis --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 712fd65cfa..3cdd79ae28 100644 --- a/setup.cfg +++ b/setup.cfg @@ -189,3 +189,5 @@ guru_meditation_reports = oslo.reports>=1.18.0 # Apache-2.0 i18n = oslo.i18n>=3.15.3 # Apache-2.0 +devstack = + virtualbmc>=1.4.0 # Apache-2.0