The failing tests in graph.py are due to a minor API change in the betweenness_centrality function. They get fixed by replacing {{{ return networkx.betweenness_centrality(self.networkx_graph(copy=False), normalized) }}} in line 3252 of SAGE_ROOT/devel/sage-main/sage/graphs/graph.py by {{{ return networkx.betweenness_centrality(self.networkx_graph(copy=False), normalized = normalized) }}} I will take a look at the rest of the failing tests tomorrow and write a patch.
Cheers, J On Wednesday, April 4, 2012 12:24:20 AM UTC+1, Daniel Krenn wrote: > > Done, see [http://trac.sagemath.org/sage_trac/ticket/12806 #12806]. > -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org