skip build/test dependencies to show up in conflicts/requries
Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
This commit is contained in:
parent
867252db23
commit
f273d7d8f3
1 changed files with 4 additions and 0 deletions
|
@ -81,6 +81,10 @@ for f in files:
|
|||
for dep in md["dependencies"]:
|
||||
if dep["optional"]:
|
||||
continue
|
||||
if dep["kind"] is not None:
|
||||
# kind: build -> build dependencies
|
||||
# kind: dev -> test dependencies
|
||||
continue
|
||||
req, con = parse_req(dep["req"])
|
||||
assert req is not None
|
||||
if args.requires:
|
||||
|
|
Loading…
Reference in a new issue