Package: python-networkx / 1.7~rc1-3

Metadata

Package Version Patches format
python-networkx 1.7~rc1-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
10_doc_relocation | (download)

setup.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 install doc in the right place for debian

20_example_dirs_remove | (download)

setup.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 don't created dirs for examples no more present
30_use_local_objects.inv | (download)

doc/source/conf.py | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 use a local copy of object.inv from doc.python.org and docs.scipy.org, instead of downloading them each time from the internet

40_no_setuptools_in_requires.txt | (download)

setup_egg.py | 1 0 + 1 - 0 !
1 file changed, 1 deletion(-)

 remove useless setuptools from requires.txt
changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff | (download)

networkx/algorithms/simple_paths.py | 3 2 + 1 - 0 !
1 file changed, 2 insertions(+), 1 deletion(-)

 fix failing doctest in all_simple_paths()
changeset_8960521b5ae4897bdbac4ff49525d8b37bff88d2.diff | (download)

networkx/convert.py | 11 8 + 3 - 0 !
networkx/tests/test_convert_scipy.py | 10 10 + 0 - 0 !
2 files changed, 18 insertions(+), 3 deletions(-)

 handle empty graph (all zero matrix) and null graph (raise exception) in to_scipy_sparse_matrix.
changeset_9ebe087b8bbcdeee3051e07cacd05fa07436c16e.diff | (download)

networkx/convert.py | 8 5 + 3 - 0 !
networkx/tests/test_convert_scipy.py | 8 8 + 0 - 0 !
2 files changed, 13 insertions(+), 3 deletions(-)

 [patch] preserver order in g.nodes() or given in nodelist when
 converting to scipy sparse matrix.  Update docs to reflect
 use of COO matrix. Addresses #737