Skip to content

Commit

Permalink
Prettier deps plots by default (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf authored Nov 21, 2023
1 parent 4816f51 commit 2f17ea8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions alibuild_helpers/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ def doDeps(args, parser):
all_both = all_build.intersection(all_runtime)

dot = "digraph {\n"
dot += "ratio=\"0.52\"\n"
dot += 'graph [nodesep=0.25, ranksep=0.2];\n'
dot += 'node [width=1.5, height=1, fonsize=46, margin=0.1];\n'
dot += 'edge [penwidth=2];\n'

for k,spec in specs.items():
if k == "defaults-release":
continue
Expand Down

0 comments on commit 2f17ea8

Please sign in to comment.