Jarrod Millman
Jarrod Millman
The following are standard import conventions for scientific Python packages: ``` import numpy as np import scipy as sp import matplotlib as mpl import matplotlib.pyplot as plt import pandas as...
We should develop some helper functions for parallelization and then use it in several places. There are several comments in the code indicating where we could parallelize things: ``` $...
Re-enable geospatial examples once pysal makes a new release. See - https://github.com/networkx/networkx/pull/5841 Background information: - https://github.com/networkx/networkx/pull/5779 - https://github.com/pysal/libpysal/pull/472
In https://github.com/networkx/networkx/pull/5721, we added a `PendingDeprecationWarning` for `nx.nx_pydot.*`. It has a number of issues and isn't actively maintained. We are also planning to improve installation issues for pygraphviz. This is...
We should probably have our read/write functionality all in one place: - review ``write_dot`` and ``read_dot`` in ``drawing/nx_agraph.py`` and ``drawing/nx_pydot.py`` - review ``algorithms/bipartite/edgelist.py`` and ``readwrite/edgelist.py``
We optionally depend on scipy, but we don't use their compressed sparse graph routines (``scipy.sparse.csgraph``): - https://docs.scipy.org/doc/scipy/reference/sparse.csgraph.html Our numpy and scipy code is out of date and we are in...
To more quickly identify performance regressions we should add some benchmarking tests. This has been suggested before (see https://github.com/pydata/pydata-sphinx-theme/issues/381#issuecomment-817981156 for example). And maybe we could have caught #855 earlier in...
With `mistune-2.0.3` and `nbconvert-7.0.0rc2`, things work. With `mistune-3.0.0a1` and `nbconvert-7.0.0rc2` we get: ``` Exception occurred: File "/opt/hostedtoolcache/Python/3.10.5/x64/lib/python3.10/site-packages/nbconvert/filters/markdown_mistune.py", line 49, in MathBlockParser RULE_NAMES = ("multiline_math",) + BlockParser.RULE_NAMES AttributeError: type object 'BlockParser'...
The default branch has been renamed! `master` is now named `main` If you have a local clone, you can update it by running the following commands. ``` git branch -m...