diff --git a/README.md b/README.md index c3d17d1..422f8e5 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ following. pip install networkx_viewer ``` -NetworkX Viewer requires [NetworkX](https://networkx.github.io/) version 2.2 or greater. +NetworkX Viewer requires [NetworkX](https://networkx.github.io/) version 3.2 or greater. Using the GUI @@ -226,11 +226,12 @@ app.mainloop() Development Status ================== -As of August 2020, networkx_viewer is considered feature complete. No +As of May 2024, networkx_viewer is considered feature complete. No additional development is expected. Bugs or feature requests should be submitted to the [github issue tracker](https://github.com/jsexauer/networkx_viewer/issues). Many thanks to [Faith Eser](https://github.com/afeser) for doing the majority of the -development work to make this library work with networkx version 2.2+. +development work to make this library work with networkx version 2.2+ and +[Phillip Feldman](https://github.com/PhillipFeldman) for networkx version 3.3+. diff --git a/networkx_viewer/__init__.py b/networkx_viewer/__init__.py index 0b28eb9..fac9544 100644 --- a/networkx_viewer/__init__.py +++ b/networkx_viewer/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.3.0' +__version__ = '0.3.1' from .graph_canvas import GraphCanvas