Skip to content

Commit

Permalink
Merge pull request #101 from Ravindu-Hirimuthugoda/master
Browse files Browse the repository at this point in the history
Fix CI failure in asv 0.6.2
  • Loading branch information
asmeurer authored Mar 25, 2024
2 parents b29f942 + b53f068 commit e0abdce
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 0 deletions.
7 changes: 7 additions & 0 deletions asv.conf.actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
7 changes: 7 additions & 0 deletions asv.conf.conda.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions asv.conf.conda.slow.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions asv.conf.venv.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions asv.conf.venv.slow.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e0abdce

Please sign in to comment.