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
Doing a quick run of our benchmarks (cd arrow/python; asv run --python=same --quick) shows that the main error is relying on pandas.util.testing.rands helper, which no longer exists and we can easily add ourselves.
Goal of this issue is to at least get the benchmarks in a runnable state.
The text was updated successfully, but these errors were encountered:
…rsion (#42089)
### Rationale for this change
Fixes#37333.
### What changes are included in this PR?
- Replaces the calls to `pandas.util.testing.rands` with existing `pyarrow.tests.util.rands`
- Updated benchmarks.rst to remove a mention of the now-deprecated `asv dev` command.
### Are these changes tested?
I tested locally in a freshly-created python venv and a conda environment and the benchmarks run without error.
### Are there any user-facing changes?
No.
* GitHub Issue: #37333
Authored-by: Bryce Mecum <petridish@gmail.com>
Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
Doing a quick run of our benchmarks (
cd arrow/python; asv run --python=same --quick
) shows that the main error is relying onpandas.util.testing.rands
helper, which no longer exists and we can easily add ourselves.Goal of this issue is to at least get the benchmarks in a runnable state.
The text was updated successfully, but these errors were encountered: