Skip to content

Commit

Permalink
BENCH Don't use setuptools based build commands (scikit-learn#29500)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiedbb authored Jul 16, 2024
1 parent d79cb58 commit b204dba
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions asv_benchmarks/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b204dba

Please sign in to comment.