-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathasv.conf.json
More file actions
30 lines (30 loc) · 809 Bytes
/
asv.conf.json
File metadata and controls
30 lines (30 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"version": 1,
"project": "pystac",
"project_url": "https://pystac.readthedocs.io/",
"repo": ".",
"branches": ["main"],
"dvcs": "git",
"environment_type": "virtualenv",
"show_commit_url": "http://github.com/stac-utils/pystac/commit/",
"matrix": {
"req": {
"orjson": [null, ""]
}
},
"benchmark_dir": "benchmarks",
"env_dir": ".asv/env",
"results_dir": ".asv/results",
"html_dir": ".asv/html",
"build_command": [
"python -m pip install uv",
"python -m uv build --all-packages --wheel --out-dir {build_cache_dir} {build_dir}"
],
"install_command": [
"python -m pip install uv",
"python -m uv pip install --reinstall --find-links={build_cache_dir} pystac"
],
"uninstall_command": [
"return-code=any python -m uv pip uninstall pystac"
]
}