diff --git a/asv.conf.actions.json b/asv.conf.actions.json index 647b6f4..d1f3b73 100644 --- a/asv.conf.actions.json +++ b/asv.conf.actions.json @@ -17,6 +17,13 @@ // project being benchmarked "repo": "https://github.com/sympy/sympy.git", + // The command to run to build the project. + // https://github.com/sympy/sympy/issues/26239 + "build_command": [ + "python -m pip install build", + "python -m build --wheel -o {build_cache_dir} {build_dir}" + ], + // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "tip" (for mercurial). diff --git a/asv.conf.conda.json b/asv.conf.conda.json index 7681880..1091813 100644 --- a/asv.conf.conda.json +++ b/asv.conf.conda.json @@ -13,6 +13,13 @@ // project being benchmarked "repo": "https://github.com/sympy/sympy.git", + // The command to run to build the project. + // https://github.com/sympy/sympy/issues/26239 + "build_command": [ + "python -m pip install build", + "python -m build --wheel -o {build_cache_dir} {build_dir}" + ], + // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "tip" (for mercurial). // "branches": ["master"], // for git diff --git a/asv.conf.conda.slow.json b/asv.conf.conda.slow.json index 5909116..b059864 100644 --- a/asv.conf.conda.slow.json +++ b/asv.conf.conda.slow.json @@ -13,6 +13,13 @@ // project being benchmarked "repo": "https://github.com/sympy/sympy.git", + // The command to run to build the project. + // https://github.com/sympy/sympy/issues/26239 + "build_command": [ + "python -m pip install build", + "python -m build --wheel -o {build_cache_dir} {build_dir}" + ], + // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "tip" (for mercurial). // "branches": ["master"], // for git diff --git a/asv.conf.json b/asv.conf.json index d8675ae..e2952ac 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -13,6 +13,13 @@ // project being benchmarked "repo": "https://github.com/sympy/sympy.git", + // The command to run to build the project. + // https://github.com/sympy/sympy/issues/26239 + "build_command": [ + "python -m pip install build", + "python -m build --wheel -o {build_cache_dir} {build_dir}" + ], + // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "tip" (for mercurial). // "branches": ["master"], // for git diff --git a/asv.conf.venv.json b/asv.conf.venv.json index 38c1bc3..cfb763f 100644 --- a/asv.conf.venv.json +++ b/asv.conf.venv.json @@ -13,6 +13,13 @@ // project being benchmarked "repo": "https://github.com/sympy/sympy.git", + // The command to run to build the project. + // https://github.com/sympy/sympy/issues/26239 + "build_command": [ + "python -m pip install build", + "python -m build --wheel -o {build_cache_dir} {build_dir}" + ], + // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "tip" (for mercurial). // "branches": ["master"], // for git diff --git a/asv.conf.venv.slow.json b/asv.conf.venv.slow.json index cb9d3ea..c5261d7 100644 --- a/asv.conf.venv.slow.json +++ b/asv.conf.venv.slow.json @@ -13,6 +13,13 @@ // project being benchmarked "repo": "https://github.com/sympy/sympy.git", + // The command to run to build the project. + // https://github.com/sympy/sympy/issues/26239 + "build_command": [ + "python -m pip install build", + "python -m build --wheel -o {build_cache_dir} {build_dir}" + ], + // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "tip" (for mercurial). // "branches": ["master"], // for git