diff options
author | Jarrod Millman <jarrod.millman@gmail.com> | 2022-06-13 20:57:55 -0700 |
---|---|---|
committer | Jarrod Millman <jarrod.millman@gmail.com> | 2022-06-13 20:59:46 -0700 |
commit | ea424eb9157e2f3ac76ad4c6e3871ed6791ffd07 (patch) | |
tree | bfbe1a5a878c86df9304e701740bb0a4c466d082 | |
parent | 00cd32cbee74848c84ed0234da15a45bfacd5603 (diff) | |
download | networkx-ea424eb9157e2f3ac76ad4c6e3871ed6791ffd07.tar.gz |
Add 2.8.4 release notes
-rw-r--r-- | doc/_templates/layout.html | 6 | ||||
-rw-r--r-- | doc/release/index.rst | 1 | ||||
-rw-r--r-- | doc/release/release_2.8.4.rst | 57 |
3 files changed, 58 insertions, 6 deletions
diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html deleted file mode 100644 index 45f314b7..00000000 --- a/doc/_templates/layout.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends "!layout.html" %} - -{% block content %} - {% include "dev_banner.html" %} - {{ super() }} -{% endblock %} diff --git a/doc/release/index.rst b/doc/release/index.rst index 03edd933..30316b6d 100644 --- a/doc/release/index.rst +++ b/doc/release/index.rst @@ -15,6 +15,7 @@ period. :maxdepth: 2 release_dev + release_2.8.4 release_2.8.3 release_2.8.2 release_2.8.1 diff --git a/doc/release/release_2.8.4.rst b/doc/release/release_2.8.4.rst new file mode 100644 index 00000000..5ab10115 --- /dev/null +++ b/doc/release/release_2.8.4.rst @@ -0,0 +1,57 @@ +NetworkX 2.8.4 +============== + +Release date: 13 June 2022 + +Supports Python 3.8, 3.9, and 3.10. + +NetworkX is a Python package for the creation, manipulation, and study of the +structure, dynamics, and functions of complex networks. + +For more information, please visit our `website <https://networkx.org/>`_ +and our :ref:`gallery of examples <examples_gallery>`. +Please send comments and questions to the `networkx-discuss mailing list +<http://groups.google.com/group/networkx-discuss>`_. + +Highlights +---------- + +Minor documentation and bug fixes. + +Merged PRs +---------- + +- Bump release version +- Clean up maximal_independent_set tests (#5567) +- MAINT: Cleanup centrality module, remove unused variables (#5308) +- importorskip scipy instead of numpy for total spanning tree (#5693) +- Add initial_graph parameter to scale_free_graph and deprecate create_using (#5697) +- Add docstring example for attr transfer to linegraph. (#5698) +- Update ISMAGS.analyze_symmetry docstring. (#5696) +- Add default value p=2 for minkowski distance metric. (#5700) +- Update inline code to inline math in docstring (#5701) +- Update multigraph docstrings to reflect `remove_edges_from` behavior. (#5699) +- Update simple_cycles docstring w/ yields and examples (#5709) +- Chromatic polynomial (#5675) +- Catch ':' explicitly while working with pydot (#5710) +- Revert "Add workaround for pytest failures on 3.11b2" (#5717) +- Default to lightmode for documentation (#5715) +- Dont compute all biconnected components in `is_biconnected()` (#5688) +- Some more changes to make pytest-randomly happy (#5719) +- Add durations flag to coverage run on CI. (#5718) +- Recover order of layers in multipartite_layout when layers are sortable (#5705) +- Update doc requirements (#5711) +- Touchups to MG and MDG edges docstrings. (#5708) +- Add PendingDeprecation for pydot (#5721) +- Add example of topo_order kwarg to dag_longest_path (#5728) +- CI: add pytest-randomly workflow. (#4553) + +Contributors +------------ + +- Ross Barnowski +- Szabolcs Horvát +- Lucas H. McCabe +- Jarrod Millman +- Mridul Seth +- Matus Valo |