|
25 | 25 | // "uninstall_command": ["return-code=any python -mpip uninstall -y {project}"], |
26 | 26 | "build_command": [ |
27 | 27 | "python -m pip install build", |
28 | | - "python -m build --wheel -o {build_cache_dir} {build_dir}" |
| 28 | + "python -m build --wheel -o {build_cache_dir} {build_dir}", |
29 | 29 | ], |
30 | 30 |
|
31 | 31 | // List of branches to benchmark. If not provided, defaults to "master" |
|
43 | 43 | // If missing or the empty string, the tool will be automatically |
44 | 44 | // determined by looking for tools on the PATH environment |
45 | 45 | // variable. |
46 | | - "environment_type": "virtualenv", |
| 46 | + "environment_type": "rattler", |
47 | 47 |
|
48 | 48 | // timeout in seconds for installing any dependencies in environment |
49 | 49 | // defaults to 10 min |
|
60 | 60 | // dependency packages in the specified order |
61 | 61 | "conda_channels": ["conda-forge", "defaults"], |
62 | 62 |
|
63 | | - // The matrix of dependencies to test. Each key is the name of a |
64 | | - // package (in PyPI) and the values are version numbers. An empty |
65 | | - // list or empty string indicates to just test against the default |
66 | | - // (latest) version. null indicates that the package is to not be |
67 | | - // installed. If the package to be tested is only available from |
68 | | - // PyPi, and the 'environment_type' is conda, then you can preface |
69 | | - // the package name by 'pip+', and the package will be installed via |
70 | | - // pip (with all the conda available packages installed first, |
71 | | - // followed by the pip installed packages). |
72 | | - // |
73 | 63 | "matrix": { |
74 | | - "numpy": [""], |
75 | | - "scipy": [""] |
| 64 | + // The matrix of dependencies to test. Each key is the name of a |
| 65 | + // package (in PyPI) and the values are version numbers. An empty |
| 66 | + // list or empty string indicates to just test against the default |
| 67 | + // (latest) version. null indicates that the package is to not be |
| 68 | + // installed. If the package to be tested is only available from |
| 69 | + // PyPi, and the 'environment_type' is conda, then you can preface |
| 70 | + // the package name by 'pip+', and the package will be installed via |
| 71 | + // pip (with all the conda available packages installed first, |
| 72 | + // followed by the pip installed packages). |
| 73 | + "req": {}, |
| 74 | + // same for env variables |
| 75 | + "env": {}, |
76 | 76 | }, |
77 | 77 |
|
78 | 78 | // Combinations of libraries/python versions can be excluded/included |
|
122 | 122 |
|
123 | 123 | // The directory (relative to the current directory) that the html tree |
124 | 124 | // should be written to. If not provided, defaults to "html". |
125 | | - "html_dir": ".asv/html" |
| 125 | + "html_dir": ".asv/html", |
126 | 126 |
|
127 | 127 | // The number of characters to retain in the commit hashes. |
128 | 128 | // "hash_length": 8, |
|
0 commit comments