From 076c906b41cfe97c35bb42eec00e4658594763e5 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 19 Mar 2024 20:24:53 -0400 Subject: [PATCH] Add build to deps along with asv We are hitting odd Run asv run --show-stderr --python 3.8 HEAD^-1 Couldn't load asv.plugins._mamba_helpers because No module named 'libmambapy' which was presumably the https://github.com/airspeed-velocity/asv/issues/1385 which was addressed by https://github.com/airspeed-velocity/asv/pull/1387 which was released in 0.6.3 but we are installing it Collecting asv!=0.6.2 (from asv[virtualenv]!=0.6.2) Downloading asv-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB) and still hitting it. Trying now with explicit "build" in depends --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 4406866..00e2199 100644 --- a/tox.ini +++ b/tox.ini @@ -28,6 +28,7 @@ commands = skip_install = True deps = asv[virtualenv] != 0.6.2 + build commands = asv run {posargs} HEAD^1..HEAD