From bb128fca0294f047d0071f4feb6564930c159d6a Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Mon, 23 Mar 2020 14:45:52 -0500 Subject: [PATCH] Soften the py3-only warning check Change-Id: I4c770fab0366f70e7e01920498498a3b79bfc423 Signed-off-by: Sean McGinnis --- openstack_requirements/check.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openstack_requirements/check.py b/openstack_requirements/check.py index 31c9a009f0..3cdece62f8 100644 --- a/openstack_requirements/check.py +++ b/openstack_requirements/check.py @@ -207,7 +207,8 @@ def _validate_one(name, reqs, blacklist, global_reqs, allow_3_only=False): if count != len(global_reqs[name]): if (allow_3_only and count >= len(_get_python3_reqs(global_reqs[name]))): - print("WARNING: Package '%s%s' is only tracking python 3 " + print("WARNING (probably OK for Ussuri and later): " + "Package '%s%s' is only tracking python 3 " "requirements" % ( name, ('[%s]' % extra) if extra else ''))