You can check the version number in Python:
>>> import pkg_resources
>>> pkg_resources.get_distribution("networkx").version
'1.6'
I have version 1.6 (installed using easy_install), and the
articulation points is there.
You can check the version when you import a module, but unless you
need to do this for a specific reason, you shouldn't need to do this;
a standard import should be fine.
Cheers
Simon
> --
> You received this message because you are subscribed to the Google Groups "networkx-discuss" group.
> To post to this group, send email to networkx...@googlegroups.com.
> To unsubscribe from this group, send email to networkx-discu...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/networkx-discuss?hl=en.
>