-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathasv.conf.json
More file actions
23 lines (23 loc) · 894 Bytes
/
asv.conf.json
File metadata and controls
23 lines (23 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"version": 1,
"project": "voyager",
"project_url": "https://spotify.github.io/voyager/",
"repo": ".",
"build_command": [
"python -m pip install build",
"/usr/bin/cp -r {build_dir}/cpp {build_dir}/python/cpp",
"/usr/bin/cp {build_dir}/README.md {build_dir}/python/README.md",
"/usr/bin/sed -i '$ a\graft cpp' {build_dir}/python/MANIFEST.in",
"/usr/bin/sed -i '$ a\include voyager/version.py' {build_dir}/python/MANIFEST.in",
"in-dir={build_dir}/python python -m build",
"/usr/bin/cp -r {build_dir}/python/dist/. {build_cache_dir}"
],
"install_command": [
"in-dir={env_dir} python -mpip install {wheel_file} numpy"
],
"benchmark_dir": "benchmarks",
"env_dir": ".asv/env",
"results_dir": ".asv/results",
"environment_type": "virtualenv",
"build_cache_size": 2,
}