forked from python-control/python-control
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset-pip-test-matrix.py
More file actions
26 lines (22 loc) · 873 Bytes
/
Copy pathset-pip-test-matrix.py
File metadata and controls
26 lines (22 loc) · 873 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
"""Create test matrix for pip wheels in OS/BLAS test matrix workflow."""
import json
from pathlib import Path
system_opt_blas_libs = {'ubuntu': ['OpenBLAS'],
'macos' : ['OpenBLAS', 'Apple']}
wheel_jobs = []
for wkey in Path("slycot-wheels").iterdir():
wos, wpy, wbl = wkey.name.split("-")
wheel_jobs.append({'packagekey': wkey.name,
'os': wos,
'python': wpy,
'blas_lib': wbl,
})
if wbl == "Generic":
for bl in system_opt_blas_libs[wos]:
wheel_jobs.append({ 'packagekey': wkey.name,
'os': wos,
'python': wpy,
'blas_lib': bl,
})
matrix = { 'include': wheel_jobs }
print(json.dumps(matrix))