Marc Garcia
Marc Garcia
When running `asv run`, if anything fails, it's only available in the middle of a possibly huge log. Finding the errors can be quite time consuming, and it'd probably be...
The asv dev command is confusing, and made few projects pin to asv 0.4 after 0.5 changed it's behavior. I'm going to remove it. In asv 0.6, I'll keep the...
I've been having a look to the configuration files of some of the main projects using asv (pandas, xarray, scikit-learn, pymc3, scikit-image...), and I don't see any of them using...
Closes #1064
Seems like sometimes when running the test suite with pypy, the tests will take forever. I saw this happening with both versions of pypy in the CI, and the builds...
With the upgrade to the latest version of `pydata-sphinx-theme` (see #48285) our docs now are available in dark mode. By default, the Sphinx theme will use the version (light/dark) set...
In your own website, if you're in an old version of the docs, the links in the version switcher are incorrect. Change version from example from here: https://pydata-sphinx-theme.readthedocs.io/en/v0.8.0/index.html We had...
NumPy data representation, by default, contains rows together in memory. In this example: ```python numpy.array([[1, 2, 3, 4], [5, 6, 7, 8]]) ``` Operating (e.g. adding up) over `1, 2,...
xref #30228 When opening a PR that introduces a deprecation (starts warning), please add it to this list, so we know what needs to be fully deprecated when releasing pandas...
The API documentation of [DataFrame.pow](https://pandas.pydata.org/docs/dev/reference/api/pandas.DataFrame.pow.html) seems to be reused with many other arithmetic operations, and it contains examples for all or most of the others, but not for `pow`. For...