Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/py-networkx py-networkx: updated to 2.4



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9f361efb9fb0
branches:  trunk
changeset: 428767:9f361efb9fb0
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Apr 11 07:45:41 2020 +0000

description:
py-networkx: updated to 2.4

2.4:
This release is the result of 6 months of work with over 200 commits by
67 contributors. Highlights include:

- Remove deprecated code from 1.x
- Support for Python 3.8
- Switched to pytest for testing
- Last release to support Python 3.5

New Functions:

- barycenter functions
- Bethe Hessian matrix function
- Eulerian Path methods
- group centrality measures
- subgraph monomorphisms
- k-truss algorithms
- onion decomposition
- resistance distance
- asteroidal triples
- non-randomness measures
- linear prufing
- minimum weight bipartite matching
- Incremental closeness centrality
- ISMAGS subgraph isomorphism algorithm
- create chordal graph of a graph

New generators

- Binomial tree generator
- Directed joint degree generator
- Random internet AS graph generator

New for Layouts

- spiral node layout routine
- support for 3d layouts


Improvements
------------
- allow average shortest path to use Floyd-Warshall method
- improve read/write of GML, GEXF, GraphML
- allow string or json object as input to jit_graph
- attempt to allow numpy.array input in place of lists in more places
- faster strongly connected components
- faster Floyd-Warshall Optimization
- faster global efficiency
- faster transitive closure
- fix unionfind; betweenness_subset; lexico-topo-sort; A*;
  inverse_line_graph; async label propagation; edgelist reading;
  Gomory-Hu flow method; label_propagation; partial_duplication;
  shell_layout with 1 node in shell; from_pandas_edgelist
- Documentation improvement and fixes


API Changes
-----------

A utility function is_list_of_ints became is_bunch_of_ints
and now tests int(item)==item instead of isinstance(_, int)
This allows e.g. floats whose values are integer.

Added utility make_list_of_ints to convert containers of
integer values to lists of integers


Deprecations
------------

Removed functions (marked as deprecated in NetworkX 2.1):

- attracting_component_subgraphs
- connected_component_subgraphs
- weakly_connected_component_subgraphs
- strongly_connected_component_subgraphs
- biconnected_component_subgraphs
- See docs for component functions for how to get subgraphs.

Graph Object methods removed (marked as deprecated 2.1)

- G.add_path
- G.add_cycle
- G.add_star
- G.nodes_with_selfloops
- G.number_of_selfloops
- G.selfloop_edges
- These are now NetworkX functions, e.g. nx.add_star(G, 5)
- G.node   --> use G.nodes
- G.fresh_copy   --> use G.__class__

Remove old names for graphview functions.

- ReverseView
- SubGraph
- SubMultiGraph
- SubMultiDiGraph
- SubDiGraph
- GraphView
- DiGraphView
- MultiGraphView
- MultiDiGraphView
- MultiReverseView
- Use reverse_view, subgraph_view and generic_graph_view.

diffstat:

 math/py-networkx/Makefile |    5 +-
 math/py-networkx/PLIST    |  137 ++++++++++++++++++++++++++++++++++++++++-----
 math/py-networkx/distinfo |   10 +-
 3 files changed, 128 insertions(+), 24 deletions(-)

diffs (truncated from 468 to 300 lines):

diff -r bae0fc8db454 -r 9f361efb9fb0 math/py-networkx/Makefile
--- a/math/py-networkx/Makefile Sat Apr 11 07:41:48 2020 +0000
+++ b/math/py-networkx/Makefile Sat Apr 11 07:45:41 2020 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.30 2020/01/18 23:32:52 rillig Exp $
+# $NetBSD: Makefile,v 1.31 2020/04/11 07:45:41 adam Exp $
 
-DISTNAME=      networkx-2.3
+DISTNAME=      networkx-2.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=n/networkx/}
-EXTRACT_SUFX=  .zip
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://networkx.github.io/
diff -r bae0fc8db454 -r 9f361efb9fb0 math/py-networkx/PLIST
--- a/math/py-networkx/PLIST    Sat Apr 11 07:41:48 2020 +0000
+++ b/math/py-networkx/PLIST    Sat Apr 11 07:45:41 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2019/06/17 14:58:26 adam Exp $
+@comment $NetBSD: PLIST,v 1.18 2020/04/11 07:45:41 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -41,6 +41,9 @@
 ${PYSITELIB}/networkx/algorithms/approximation/steinertree.py
 ${PYSITELIB}/networkx/algorithms/approximation/steinertree.pyc
 ${PYSITELIB}/networkx/algorithms/approximation/steinertree.pyo
+${PYSITELIB}/networkx/algorithms/approximation/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/approximation/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/approximation/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/approximation/tests/test_approx_clust_coeff.py
 ${PYSITELIB}/networkx/algorithms/approximation/tests/test_approx_clust_coeff.pyc
 ${PYSITELIB}/networkx/algorithms/approximation/tests/test_approx_clust_coeff.pyo
@@ -98,6 +101,9 @@
 ${PYSITELIB}/networkx/algorithms/assortativity/pairs.py
 ${PYSITELIB}/networkx/algorithms/assortativity/pairs.pyc
 ${PYSITELIB}/networkx/algorithms/assortativity/pairs.pyo
+${PYSITELIB}/networkx/algorithms/assortativity/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/assortativity/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/assortativity/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/assortativity/tests/base_test.py
 ${PYSITELIB}/networkx/algorithms/assortativity/tests/base_test.pyc
 ${PYSITELIB}/networkx/algorithms/assortativity/tests/base_test.pyo
@@ -116,6 +122,9 @@
 ${PYSITELIB}/networkx/algorithms/assortativity/tests/test_pairs.py
 ${PYSITELIB}/networkx/algorithms/assortativity/tests/test_pairs.pyc
 ${PYSITELIB}/networkx/algorithms/assortativity/tests/test_pairs.pyo
+${PYSITELIB}/networkx/algorithms/asteroidal.py
+${PYSITELIB}/networkx/algorithms/asteroidal.pyc
+${PYSITELIB}/networkx/algorithms/asteroidal.pyo
 ${PYSITELIB}/networkx/algorithms/bipartite/__init__.py
 ${PYSITELIB}/networkx/algorithms/bipartite/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/bipartite/__init__.pyo
@@ -152,6 +161,9 @@
 ${PYSITELIB}/networkx/algorithms/bipartite/spectral.py
 ${PYSITELIB}/networkx/algorithms/bipartite/spectral.pyc
 ${PYSITELIB}/networkx/algorithms/bipartite/spectral.pyo
+${PYSITELIB}/networkx/algorithms/bipartite/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/bipartite/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/bipartite/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/bipartite/tests/test_basic.py
 ${PYSITELIB}/networkx/algorithms/bipartite/tests/test_basic.pyc
 ${PYSITELIB}/networkx/algorithms/bipartite/tests/test_basic.pyo
@@ -224,6 +236,9 @@
 ${PYSITELIB}/networkx/algorithms/centrality/flow_matrix.py
 ${PYSITELIB}/networkx/algorithms/centrality/flow_matrix.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/flow_matrix.pyo
+${PYSITELIB}/networkx/algorithms/centrality/group.py
+${PYSITELIB}/networkx/algorithms/centrality/group.pyc
+${PYSITELIB}/networkx/algorithms/centrality/group.pyo
 ${PYSITELIB}/networkx/algorithms/centrality/harmonic.py
 ${PYSITELIB}/networkx/algorithms/centrality/harmonic.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/harmonic.pyo
@@ -245,6 +260,9 @@
 ${PYSITELIB}/networkx/algorithms/centrality/subgraph_alg.py
 ${PYSITELIB}/networkx/algorithms/centrality/subgraph_alg.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/subgraph_alg.pyo
+${PYSITELIB}/networkx/algorithms/centrality/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/centrality/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/centrality/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_betweenness_centrality.py
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_betweenness_centrality.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_betweenness_centrality.pyo
@@ -272,6 +290,9 @@
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_eigenvector_centrality.py
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_eigenvector_centrality.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_eigenvector_centrality.pyo
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_group.py
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_group.pyc
+${PYSITELIB}/networkx/algorithms/centrality/tests/test_group.pyo
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_harmonic_centrality.py
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_harmonic_centrality.pyc
 ${PYSITELIB}/networkx/algorithms/centrality/tests/test_harmonic_centrality.pyo
@@ -323,6 +344,9 @@
 ${PYSITELIB}/networkx/algorithms/coloring/greedy_coloring_with_interchange.py
 ${PYSITELIB}/networkx/algorithms/coloring/greedy_coloring_with_interchange.pyc
 ${PYSITELIB}/networkx/algorithms/coloring/greedy_coloring_with_interchange.pyo
+${PYSITELIB}/networkx/algorithms/coloring/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/coloring/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/coloring/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/coloring/tests/test_coloring.py
 ${PYSITELIB}/networkx/algorithms/coloring/tests/test_coloring.pyc
 ${PYSITELIB}/networkx/algorithms/coloring/tests/test_coloring.pyo
@@ -338,9 +362,6 @@
 ${PYSITELIB}/networkx/algorithms/community/centrality.py
 ${PYSITELIB}/networkx/algorithms/community/centrality.pyc
 ${PYSITELIB}/networkx/algorithms/community/centrality.pyo
-${PYSITELIB}/networkx/algorithms/community/community_generators.py
-${PYSITELIB}/networkx/algorithms/community/community_generators.pyc
-${PYSITELIB}/networkx/algorithms/community/community_generators.pyo
 ${PYSITELIB}/networkx/algorithms/community/community_utils.py
 ${PYSITELIB}/networkx/algorithms/community/community_utils.pyc
 ${PYSITELIB}/networkx/algorithms/community/community_utils.pyo
@@ -359,15 +380,15 @@
 ${PYSITELIB}/networkx/algorithms/community/quality.py
 ${PYSITELIB}/networkx/algorithms/community/quality.pyc
 ${PYSITELIB}/networkx/algorithms/community/quality.pyo
+${PYSITELIB}/networkx/algorithms/community/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/community/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/community/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/community/tests/test_asyn_fluid.py
 ${PYSITELIB}/networkx/algorithms/community/tests/test_asyn_fluid.pyc
 ${PYSITELIB}/networkx/algorithms/community/tests/test_asyn_fluid.pyo
 ${PYSITELIB}/networkx/algorithms/community/tests/test_centrality.py
 ${PYSITELIB}/networkx/algorithms/community/tests/test_centrality.pyc
 ${PYSITELIB}/networkx/algorithms/community/tests/test_centrality.pyo
-${PYSITELIB}/networkx/algorithms/community/tests/test_generators.py
-${PYSITELIB}/networkx/algorithms/community/tests/test_generators.pyc
-${PYSITELIB}/networkx/algorithms/community/tests/test_generators.pyo
 ${PYSITELIB}/networkx/algorithms/community/tests/test_kclique.py
 ${PYSITELIB}/networkx/algorithms/community/tests/test_kclique.pyc
 ${PYSITELIB}/networkx/algorithms/community/tests/test_kclique.pyo
@@ -404,6 +425,9 @@
 ${PYSITELIB}/networkx/algorithms/components/strongly_connected.py
 ${PYSITELIB}/networkx/algorithms/components/strongly_connected.pyc
 ${PYSITELIB}/networkx/algorithms/components/strongly_connected.pyo
+${PYSITELIB}/networkx/algorithms/components/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/components/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/components/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/components/tests/test_attracting.py
 ${PYSITELIB}/networkx/algorithms/components/tests/test_attracting.pyc
 ${PYSITELIB}/networkx/algorithms/components/tests/test_attracting.pyo
@@ -419,9 +443,6 @@
 ${PYSITELIB}/networkx/algorithms/components/tests/test_strongly_connected.py
 ${PYSITELIB}/networkx/algorithms/components/tests/test_strongly_connected.pyc
 ${PYSITELIB}/networkx/algorithms/components/tests/test_strongly_connected.pyo
-${PYSITELIB}/networkx/algorithms/components/tests/test_subgraph_copies.py
-${PYSITELIB}/networkx/algorithms/components/tests/test_subgraph_copies.pyc
-${PYSITELIB}/networkx/algorithms/components/tests/test_subgraph_copies.pyo
 ${PYSITELIB}/networkx/algorithms/components/tests/test_weakly_connected.py
 ${PYSITELIB}/networkx/algorithms/components/tests/test_weakly_connected.pyc
 ${PYSITELIB}/networkx/algorithms/components/tests/test_weakly_connected.pyo
@@ -455,6 +476,9 @@
 ${PYSITELIB}/networkx/algorithms/connectivity/stoerwagner.py
 ${PYSITELIB}/networkx/algorithms/connectivity/stoerwagner.pyc
 ${PYSITELIB}/networkx/algorithms/connectivity/stoerwagner.pyo
+${PYSITELIB}/networkx/algorithms/connectivity/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/connectivity/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/connectivity/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/connectivity/tests/test_connectivity.py
 ${PYSITELIB}/networkx/algorithms/connectivity/tests/test_connectivity.pyc
 ${PYSITELIB}/networkx/algorithms/connectivity/tests/test_connectivity.pyo
@@ -509,9 +533,9 @@
 ${PYSITELIB}/networkx/algorithms/dominating.py
 ${PYSITELIB}/networkx/algorithms/dominating.pyc
 ${PYSITELIB}/networkx/algorithms/dominating.pyo
-${PYSITELIB}/networkx/algorithms/efficiency.py
-${PYSITELIB}/networkx/algorithms/efficiency.pyc
-${PYSITELIB}/networkx/algorithms/efficiency.pyo
+${PYSITELIB}/networkx/algorithms/efficiency_measures.py
+${PYSITELIB}/networkx/algorithms/efficiency_measures.pyc
+${PYSITELIB}/networkx/algorithms/efficiency_measures.pyo
 ${PYSITELIB}/networkx/algorithms/euler.py
 ${PYSITELIB}/networkx/algorithms/euler.pyc
 ${PYSITELIB}/networkx/algorithms/euler.pyo
@@ -548,6 +572,9 @@
 ${PYSITELIB}/networkx/algorithms/flow/shortestaugmentingpath.py
 ${PYSITELIB}/networkx/algorithms/flow/shortestaugmentingpath.pyc
 ${PYSITELIB}/networkx/algorithms/flow/shortestaugmentingpath.pyo
+${PYSITELIB}/networkx/algorithms/flow/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/flow/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/flow/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/flow/tests/gl1.gpickle.bz2
 ${PYSITELIB}/networkx/algorithms/flow/tests/gw1.gpickle.bz2
 ${PYSITELIB}/networkx/algorithms/flow/tests/netgen-2.gpickle.bz2
@@ -582,6 +609,9 @@
 ${PYSITELIB}/networkx/algorithms/isomorphism/__init__.py
 ${PYSITELIB}/networkx/algorithms/isomorphism/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/isomorphism/__init__.pyo
+${PYSITELIB}/networkx/algorithms/isomorphism/ismags.py
+${PYSITELIB}/networkx/algorithms/isomorphism/ismags.pyc
+${PYSITELIB}/networkx/algorithms/isomorphism/ismags.pyo
 ${PYSITELIB}/networkx/algorithms/isomorphism/isomorph.py
 ${PYSITELIB}/networkx/algorithms/isomorphism/isomorph.pyc
 ${PYSITELIB}/networkx/algorithms/isomorphism/isomorph.pyo
@@ -594,10 +624,16 @@
 ${PYSITELIB}/networkx/algorithms/isomorphism/temporalisomorphvf2.py
 ${PYSITELIB}/networkx/algorithms/isomorphism/temporalisomorphvf2.pyc
 ${PYSITELIB}/networkx/algorithms/isomorphism/temporalisomorphvf2.pyo
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/iso_r01_s80.A99
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/iso_r01_s80.B99
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/si2_b06_m200.A99
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/si2_b06_m200.B99
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_ismags.py
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_ismags.pyc
+${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_ismags.pyo
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphism.py
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphism.pyc
 ${PYSITELIB}/networkx/algorithms/isomorphism/tests/test_isomorphism.pyo
@@ -625,6 +661,9 @@
 ${PYSITELIB}/networkx/algorithms/link_analysis/pagerank_alg.py
 ${PYSITELIB}/networkx/algorithms/link_analysis/pagerank_alg.pyc
 ${PYSITELIB}/networkx/algorithms/link_analysis/pagerank_alg.pyo
+${PYSITELIB}/networkx/algorithms/link_analysis/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/link_analysis/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/link_analysis/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/link_analysis/tests/test_hits.py
 ${PYSITELIB}/networkx/algorithms/link_analysis/tests/test_hits.pyc
 ${PYSITELIB}/networkx/algorithms/link_analysis/tests/test_hits.pyo
@@ -658,6 +697,9 @@
 ${PYSITELIB}/networkx/algorithms/node_classification/lgc.py
 ${PYSITELIB}/networkx/algorithms/node_classification/lgc.pyc
 ${PYSITELIB}/networkx/algorithms/node_classification/lgc.pyo
+${PYSITELIB}/networkx/algorithms/node_classification/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/node_classification/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/node_classification/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/node_classification/tests/test_harmonic_function.py
 ${PYSITELIB}/networkx/algorithms/node_classification/tests/test_harmonic_function.pyc
 ${PYSITELIB}/networkx/algorithms/node_classification/tests/test_harmonic_function.pyo
@@ -667,6 +709,9 @@
 ${PYSITELIB}/networkx/algorithms/node_classification/utils.py
 ${PYSITELIB}/networkx/algorithms/node_classification/utils.pyc
 ${PYSITELIB}/networkx/algorithms/node_classification/utils.pyo
+${PYSITELIB}/networkx/algorithms/non_randomness.py
+${PYSITELIB}/networkx/algorithms/non_randomness.pyc
+${PYSITELIB}/networkx/algorithms/non_randomness.pyo
 ${PYSITELIB}/networkx/algorithms/operators/__init__.py
 ${PYSITELIB}/networkx/algorithms/operators/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/operators/__init__.pyo
@@ -679,6 +724,9 @@
 ${PYSITELIB}/networkx/algorithms/operators/product.py
 ${PYSITELIB}/networkx/algorithms/operators/product.pyc
 ${PYSITELIB}/networkx/algorithms/operators/product.pyo
+${PYSITELIB}/networkx/algorithms/operators/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/operators/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/operators/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/operators/tests/test_all.py
 ${PYSITELIB}/networkx/algorithms/operators/tests/test_all.pyc
 ${PYSITELIB}/networkx/algorithms/operators/tests/test_all.pyo
@@ -718,6 +766,9 @@
 ${PYSITELIB}/networkx/algorithms/shortest_paths/generic.py
 ${PYSITELIB}/networkx/algorithms/shortest_paths/generic.pyc
 ${PYSITELIB}/networkx/algorithms/shortest_paths/generic.pyo
+${PYSITELIB}/networkx/algorithms/shortest_paths/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/shortest_paths/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/shortest_paths/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/shortest_paths/tests/test_astar.py
 ${PYSITELIB}/networkx/algorithms/shortest_paths/tests/test_astar.pyc
 ${PYSITELIB}/networkx/algorithms/shortest_paths/tests/test_astar.pyo
@@ -766,6 +817,9 @@
 ${PYSITELIB}/networkx/algorithms/tests/__init__.py
 ${PYSITELIB}/networkx/algorithms/tests/__init__.pyc
 ${PYSITELIB}/networkx/algorithms/tests/__init__.pyo
+${PYSITELIB}/networkx/algorithms/tests/test_asteroidal.py
+${PYSITELIB}/networkx/algorithms/tests/test_asteroidal.pyc
+${PYSITELIB}/networkx/algorithms/tests/test_asteroidal.pyo
 ${PYSITELIB}/networkx/algorithms/tests/test_boundary.py
 ${PYSITELIB}/networkx/algorithms/tests/test_boundary.pyc
 ${PYSITELIB}/networkx/algorithms/tests/test_boundary.pyo
@@ -850,6 +904,9 @@
 ${PYSITELIB}/networkx/algorithms/tests/test_moral.py
 ${PYSITELIB}/networkx/algorithms/tests/test_moral.pyc
 ${PYSITELIB}/networkx/algorithms/tests/test_moral.pyo
+${PYSITELIB}/networkx/algorithms/tests/test_non_randomness.py
+${PYSITELIB}/networkx/algorithms/tests/test_non_randomness.pyc
+${PYSITELIB}/networkx/algorithms/tests/test_non_randomness.pyo
 ${PYSITELIB}/networkx/algorithms/tests/test_planar_drawing.py
 ${PYSITELIB}/networkx/algorithms/tests/test_planar_drawing.pyc
 ${PYSITELIB}/networkx/algorithms/tests/test_planar_drawing.pyo
@@ -925,6 +982,9 @@
 ${PYSITELIB}/networkx/algorithms/traversal/edgedfs.py
 ${PYSITELIB}/networkx/algorithms/traversal/edgedfs.pyc
 ${PYSITELIB}/networkx/algorithms/traversal/edgedfs.pyo
+${PYSITELIB}/networkx/algorithms/traversal/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/traversal/tests/__init__.pyc
+${PYSITELIB}/networkx/algorithms/traversal/tests/__init__.pyo
 ${PYSITELIB}/networkx/algorithms/traversal/tests/test_beamsearch.py
 ${PYSITELIB}/networkx/algorithms/traversal/tests/test_beamsearch.pyc
 ${PYSITELIB}/networkx/algorithms/traversal/tests/test_beamsearch.pyo
@@ -958,6 +1018,9 @@
 ${PYSITELIB}/networkx/algorithms/tree/recognition.py
 ${PYSITELIB}/networkx/algorithms/tree/recognition.pyc
 ${PYSITELIB}/networkx/algorithms/tree/recognition.pyo
+${PYSITELIB}/networkx/algorithms/tree/tests/__init__.py
+${PYSITELIB}/networkx/algorithms/tree/tests/__init__.pyc



Home | Main Index | Thread Index | Old Index