|
| 1 | +Metadata-Version: 1.1 |
| 2 | +Name: altgraph |
| 3 | +Version: 0.10.2 |
| 4 | +Summary: Python graph (network) package |
| 5 | +Home-page: http://packages.python.org/altgraph |
| 6 | +Author: Ronald Oussoren |
| 7 | + |
| 8 | +License: MIT |
| 9 | +Download-URL: http://pypi.python.org/pypi/altgraph |
| 10 | +Description: altgraph is a fork of graphlib: a graph (network) package for constructing |
| 11 | + graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with |
| 12 | + graphviz output. |
| 13 | + |
| 14 | + altgraph includes some additional usage of Python 2.6+ features and |
| 15 | + enhancements related to modulegraph and macholib. |
| 16 | + |
| 17 | + |
| 18 | + Release history |
| 19 | + =============== |
| 20 | + |
| 21 | + 0.10.2 |
| 22 | + ------ |
| 23 | + |
| 24 | + - There where no classifiers in the package metadata due to a bug |
| 25 | + in setup.py |
| 26 | + |
| 27 | + 0.10.1 |
| 28 | + ------ |
| 29 | + |
| 30 | + This is a bugfix release |
| 31 | + |
| 32 | + Bug fixes: |
| 33 | + |
| 34 | + - Issue #3: The source archive contains a README.txt |
| 35 | + while the setup file refers to ReadMe.txt. |
| 36 | + |
| 37 | + This is caused by a misfeature in distutils, as a |
| 38 | + workaround I've renamed ReadMe.txt to README.txt |
| 39 | + in the source tree and setup file. |
| 40 | + |
| 41 | + |
| 42 | + 0.10 |
| 43 | + ----- |
| 44 | + |
| 45 | + This is a minor feature release |
| 46 | + |
| 47 | + Features: |
| 48 | + |
| 49 | + - Do not use "2to3" to support Python 3. |
| 50 | + |
| 51 | + As a side effect of this altgraph now supports |
| 52 | + Python 2.6 and later, and no longer supports |
| 53 | + earlier releases of Python. |
| 54 | + |
| 55 | + - The order of attributes in the Dot output |
| 56 | + is now always alphabetical. |
| 57 | + |
| 58 | + With this change the output will be consistent |
| 59 | + between runs and Python versions. |
| 60 | + |
| 61 | + 0.9 |
| 62 | + --- |
| 63 | + |
| 64 | + This is a minor bugfix release |
| 65 | + |
| 66 | + Features: |
| 67 | + |
| 68 | + - Added ``altgraph.ObjectGraph.ObjectGraph.nodes``, a method |
| 69 | + yielding all nodes in an object graph. |
| 70 | + |
| 71 | + Bugfixes: |
| 72 | + |
| 73 | + - The 0.8 release didn't work with py2app when using |
| 74 | + python 3.x. |
| 75 | + |
| 76 | + |
| 77 | + 0.8 |
| 78 | + ----- |
| 79 | + |
| 80 | + This is a minor feature release. The major new feature |
| 81 | + is a extensive set of unittests, which explains almost |
| 82 | + all other changes in this release. |
| 83 | + |
| 84 | + Bugfixes: |
| 85 | + |
| 86 | + - Installing failed with Python 2.5 due to using a distutils |
| 87 | + class that isn't available in that version of Python |
| 88 | + (issue #1 on the issue tracker) |
| 89 | + |
| 90 | + - ``altgraph.GraphStat.degree_dist`` now actually works |
| 91 | + |
| 92 | + - ``altgraph.Graph.add_edge(a, b, create_nodes=False)`` will |
| 93 | + no longer create the edge when one of the nodes doesn't |
| 94 | + exist. |
| 95 | + |
| 96 | + - ``altgraph.Graph.forw_topo_sort`` failed for some sparse graphs. |
| 97 | + |
| 98 | + - ``altgraph.Graph.back_topo_sort`` was completely broken in |
| 99 | + previous releases. |
| 100 | + |
| 101 | + - ``altgraph.Graph.forw_bfs_subgraph`` now actually works. |
| 102 | + |
| 103 | + - ``altgraph.Graph.back_bfs_subgraph`` now actually works. |
| 104 | + |
| 105 | + - ``altgraph.Graph.iterdfs`` now returns the correct result |
| 106 | + when the ``forward`` argument is ``False``. |
| 107 | + |
| 108 | + - ``altgraph.Graph.iterdata`` now returns the correct result |
| 109 | + when the ``forward`` argument is ``False``. |
| 110 | + |
| 111 | + |
| 112 | + Features: |
| 113 | + |
| 114 | + - The ``altgraph.Graph`` constructor now accepts an argument |
| 115 | + that contains 2- and 3-tuples instead of requireing that |
| 116 | + all items have the same size. The (optional) argument can now |
| 117 | + also be any iterator. |
| 118 | + |
| 119 | + - ``altgraph.Graph.Graph.add_node`` has no effect when you |
| 120 | + add a hidden node. |
| 121 | + |
| 122 | + - The private method ``altgraph.Graph._bfs`` is no longer |
| 123 | + present. |
| 124 | + |
| 125 | + - The private method ``altgraph.Graph._dfs`` is no longer |
| 126 | + present. |
| 127 | + |
| 128 | + - ``altgraph.ObjectGraph`` now has a ``__contains__`` methods, |
| 129 | + which means you can use the ``in`` operator to check if a |
| 130 | + node is part of a graph. |
| 131 | + |
| 132 | + - ``altgraph.GraphUtil.generate_random_graph`` will raise |
| 133 | + ``GraphError`` instead of looping forever when it is |
| 134 | + impossible to create the requested graph. |
| 135 | + |
| 136 | + - ``altgraph.Dot.edge_style`` raises ``GraphError`` when |
| 137 | + one of the nodes is not present in the graph. The method |
| 138 | + silently added the tail in the past, but without ensuring |
| 139 | + a consistent graph state. |
| 140 | + |
| 141 | + - ``altgraph.Dot.save_img`` now works when the mode is |
| 142 | + ``"neato"``. |
| 143 | + |
| 144 | + 0.7.2 |
| 145 | + ----- |
| 146 | + |
| 147 | + This is a minor bugfix release |
| 148 | + |
| 149 | + Bugfixes: |
| 150 | + |
| 151 | + - distutils didn't include the documentation subtree |
| 152 | + |
| 153 | + 0.7.1 |
| 154 | + ----- |
| 155 | + |
| 156 | + This is a minor feature release |
| 157 | + |
| 158 | + Features: |
| 159 | + |
| 160 | + - Documentation is now generated using `sphinx <http://pypi.python.org/pypi/sphinx>`_ |
| 161 | + and can be viewed at <http://packages.python.org/altgraph>. |
| 162 | + |
| 163 | + - The repository has moved to bitbucket |
| 164 | + |
| 165 | + - ``altgraph.GraphStat.avg_hops`` is no longer present, the function had no |
| 166 | + implementation and no specified behaviour. |
| 167 | + |
| 168 | + - the module ``altgraph.compat`` is gone, which means altgraph will no |
| 169 | + longer work with Python 2.3. |
| 170 | + |
| 171 | + |
| 172 | + 0.7.0 |
| 173 | + ----- |
| 174 | + |
| 175 | + This is a minor feature release. |
| 176 | + |
| 177 | + Features: |
| 178 | + |
| 179 | + - Support for Python 3 |
| 180 | + |
| 181 | + - It is now possible to run tests using 'python setup.py test' |
| 182 | + |
| 183 | + (The actual testsuite is still very minimal though) |
| 184 | + |
| 185 | +Platform: any |
| 186 | +Classifier: Intended Audience :: Developers |
| 187 | +Classifier: License :: OSI Approved :: MIT License |
| 188 | +Classifier: Programming Language :: Python |
| 189 | +Classifier: Programming Language :: Python :: 2 |
| 190 | +Classifier: Programming Language :: Python :: 3 |
| 191 | +Classifier: Topic :: Software Development :: Libraries :: Python Modules |
| 192 | +Classifier: Topic :: Scientific/Engineering :: Mathematics |
| 193 | +Classifier: Topic :: Scientific/Engineering :: Visualization |
0 commit comments