vallettea / koala

Transpose your Excel calculations into python for better performances and scaling.
GNU General Public License v3.0
144 stars 59 forks source link

Incompatibility with networkx 2.1 #128

Closed abielr closed 6 years ago

abielr commented 6 years ago

koala doesn't currently work with networkx 2.1, for example

G.add_node(arg1,{'pos':1})

should now be

G.add_node(arg1, pos=1)