Skip to content

Commit

Permalink
chore: Drop pydotplus as unused since networkx v2.0 (#25)
Browse files Browse the repository at this point in the history
* Drop pydotplus from viz extra as it has unused by adage
dependency networkx since networkx v2.0
   - c.f. networkx/networkx#2272
* Set lower bound on pydot of v1.2.3
   - c.f. networkx/networkx#2272
   - > Support for the long-obsolete "pydotplus" fork has been
     > reverted back to the well-maintained parent "pydot" project...
     > All "nx_pydot" functions now explicitly require pydot >= 1.2.3,
     > which broke backwards API compatibility and resolved long-standing
     > Python 2.x issues. Sanity is restored.
  • Loading branch information
matthewfeickert authored Feb 3, 2022
1 parent 0450797 commit 1061f80
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
extras_require = {
"develop": ["pyflakes", "pytest>=3.2.0", "pytest-cov>=2.5.1", "python-coveralls"],
"viz": [
"pydot",
"pydot>=1.2.3", # c.f. https://github.com/networkx/networkx/pull/2272
"pygraphviz>=1.0,!=1.8", # c.f. https://github.com/pygraphviz/pygraphviz/issues/395
"pydotplus",
],
}

Expand Down

0 comments on commit 1061f80

Please sign in to comment.