stop requiring comments to match global-requirements.txt

Requiring the comments after the version numbers to match seems
overly pedantic.

Change-Id: Ia9d94ea194128dff867cd069488773454ba121ce
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-04-03 09:57:40 -04:00
parent de59c94255
commit ca6eef59c1

View File

@ -88,7 +88,7 @@ def _is_requirement_in_global_reqs(req, global_reqs):
for req2 in global_reqs:
matching = True
for aname in ['package', 'location', 'markers', 'comment']:
for aname in ['package', 'location', 'markers']:
rval = getattr(req, aname)
r2val = getattr(req2, aname)
if rval != r2val: