-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathasv.conf.json
65 lines (52 loc) · 1.62 KB
/
asv.conf.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"version": 1,
// The versions of Python to test against
"pythons": ["3.8"], // Python 3.7 included below with extra cached_property dependency
"environment_type": "virtualenv",
// The matrix of dependencies to test. Each key is the name of a
// package (in PyPI) and the values are version numbers. An empty
// string indicates to just test against the default (latest)
// version.
"matrix": {
"numpy": "",
"numba": "",
"astropy": "",
"scipy": "",
"astroquery": "",
"jplephem": "",
"pandas": "",
"plotly": "",
"matplotlib": "",
},
"include": [
{
"python": "3.7",
"numpy": "",
"numba": "",
"astropy": "",
"scipy": "",
"astroquery": "",
"jplephem": "",
"pandas": "",
"plotly": "",
"matplotlib": "",
"cached_property": "",
},
],
"dcvs": "git",
// The git URL to the project being tested. Comment the first line
// and uncomment and edit the second if you are testing local changes.
"repo": "https://github.com/poliastro/poliastro.git",
"project": "poliastro",
"project_url": "http://blog.poliastro.space/",
"show_commit_url": "http://github.com/poliastro/poliastro/commit/",
"install_command": [
"python -m pip install flit wheel",
"python -m flit install",
],
"build_command": [
"python -m pip install flit wheel pygments",
"python -m flit build --no-setup-py",
],
"build_cache_size": 25,
}