Found some of the causes of my upgrade difficulties:
> ps. anyone has any idea if the set_style method on a Cluster has been
> recently changed or removed from either graphviz or pydot?
I found a bug in my code that worked in the older 0.9.8 version:
node.set_style('filled,rounded')
now I had to watch those spaces to make things go fine:
node.set_style('filled, rounded')
in addition, I found that cluster object lacked "set_color" and more,
so I had to add:
self.create_attribute_methods(CLUSTER_ATTRIBUTES)
to the end of Cluster.__init__ to get the cluster specific attributes
Finally, I used a python int value when setting stuff:
node.set_fontsize(8)
has to be
node.set_fontsize("8")
I couldn't point my finger directly on where to put a good fix
regards,
Gerwin