Re: [graph-tool] problem with graphviz_draw()

2020-11-17 Thread Rolf Sander
For anyone who has the same problem, here is a quick bug fix until the problem is finally resolved: In your graph-tool-2.35 code, replace the file graph_tool/draw/graphviz_draw.py by this one: http://www.rolf-sander.net/tmp/graphviz_draw.py FYI: This replacement file graphviz_draw.py is taken

Re: [graph-tool] problem with graphviz_draw()

2020-11-13 Thread Rolf Sander
Thanks. I've opened an issue now. Best regards Rolf -- Sent from: https://nabble.skewed.de/ ___ graph-tool mailing list graph-tool@skewed.de https://lists.skewed.de/mailman/listinfo/graph-tool

Re: [graph-tool] problem with graphviz_draw()

2020-11-12 Thread Tiago de Paula Peixoto
Hi, Please open an issue in the website with this example, and I'll take a look at it when time permits. Best, Tiago Am 11.11.20 um 15:32 schrieb Rolf Sander: > Hello, > > After updating graph_tool from version 2.33 to 2.35, I cannot make plots > with graphviz_draw() anymore. Here is a minimal

[graph-tool] problem with graphviz_draw()

2020-11-11 Thread Rolf Sander
Hello, After updating graph_tool from version 2.33 to 2.35, I cannot make plots with graphviz_draw() anymore. Here is a minimal example to reproduce the error: # import graph_tool.all as gt g = gt.Graph() v0 = g.add_vertex() v1 = g.add_vertex() e01 =