You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the _do_checks function from d3graph.py, there is an assert float(nx.__version__)>2. This is fine if the version only has two levels, but my current version of networkx is '2.8.8', so it throws:
ValueError: could not convert string to float: '2.8.8'
Consider changing to something like the following:
In the
_do_checks
function from d3graph.py, there is anassert float(nx.__version__)>2
. This is fine if the version only has two levels, but my current version of networkx is '2.8.8', so it throws:Consider changing to something like the following:
The text was updated successfully, but these errors were encountered: