From dab3737384ef44b5c1cdb49b8aa3b4da2dd0015f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20du=20Boisberranger?= Date: Tue, 16 Jul 2024 12:50:03 +0200 Subject: [PATCH] don't use setuptools based build commands --- asv_benchmarks/asv.conf.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/asv_benchmarks/asv.conf.json b/asv_benchmarks/asv.conf.json index ba7b12011acec..21770d656eb98 100644 --- a/asv_benchmarks/asv.conf.json +++ b/asv_benchmarks/asv.conf.json @@ -20,10 +20,10 @@ // Customizable commands for building, installing, and // uninstalling the project. See asv.conf.json documentation. - // - // "install_command": ["python -mpip install {wheel_file}"], - // "uninstall_command": ["return-code=any python -mpip uninstall -y {project}"], - // "build_command": ["python -m build --wheel -o {build_cache_dir} {build_dir}"], + "install_command": ["python -mpip install {wheel_file}"], + "uninstall_command": ["return-code=any python -mpip uninstall -y {project}"], + "build_command": ["python -m build --wheel -o {build_cache_dir} {build_dir}"], + // List of branches to benchmark. If not provided, defaults to "master // (for git) or "default" (for mercurial). "branches": ["main"], @@ -72,12 +72,12 @@ // those due to dependency changes. // "matrix": { - "numpy": ["1.25.2"], - "scipy": ["1.11.2"], + "numpy": ["2.0.0"], + "scipy": ["1.14.0"], "cython": ["3.0.10"], "joblib": ["1.3.2"], "threadpoolctl": ["3.2.0"], - "pandas": ["2.1.0"] + "pandas": ["2.2.2"] }, // Combinations of libraries/python versions can be excluded/included