Ross Barnowski
Ross Barnowski
I just noticed that [numpydoc's documentation](https://numpydoc.readthedocs.io/en/latest/) looks strange with the latest pydata-sphinx-theme. I built the docs locally and can confirm that the extra vertical whitespace above the main title is...
As noted in #436, the `AGraph.copy` method creates new graphs that preserve attributes from the original graphs that can not otherwise be overwritten: the `name` attribute, for example. ```python >>>...
This potentially improves forward compatibility in the case that IDTYPE is changed in the underlying cgraph.h file. This may have different impacts on different platforms depending on whether `long` is...
As discussed in the previous documentation meeting, this PR implements the "medium-term" solution to the tutorials that have been added but are not currently executable. Essentially, this moves the RL...
I noticed this while reviewing docstrings in #7258. From the documentation, it seems `all_node_cuts` is intended to return node sets. This is indeed the behavior for some graphs, e.g. ```python...
Followup issue to #7299 - the `contextily.add_basemap` had been intermittently failing in some of the geospatial gallery examples, e.g. `plot_lines.py` and `plot_delaunay.py`. These have been temporarily renamed to stop them...
Fixes #7258 and adds a regression test for all of the generators in NetworkX which had incorrect `Returns` sections in the docstrings. These are just the ones caught by numpydoc...
The `nx.generate_random_paths` iterator creates paths of specified length from `G`. This function is not seeded, so there is currently no way to reproduce results between runs.
Use numpydoc docstring standard and fixup formatting/examples.