File tree Expand file tree Collapse file tree 1 file changed +33
-6
lines changed Expand file tree Collapse file tree 1 file changed +33
-6
lines changed Original file line number Diff line number Diff line change @@ -10,17 +10,44 @@ jobs:
10
10
build_linux :
11
11
12
12
runs-on : ubuntu-latest
13
- strategy :
14
- max-parallel : 4
15
- matrix :
16
- python-version : [3.8]
17
13
18
14
steps :
19
15
- uses : actions/checkout@v1
20
- - name : Set up Python ${{ matrix.python-version }}
16
+ - name : Set up Python 3.8
21
17
uses : actions/setup-python@v1
22
18
with :
23
- python-version : ${{ matrix.python-version }}
19
+ python-version : 3.8
20
+
21
+ - name : Install dependencies
22
+ run : |
23
+ python -m pip install --upgrade pip
24
+ pip install -r requirements.txt
25
+ pip install -U "cython"
26
+ - name : Install cibuildwheel
27
+ run : |
28
+ python -m pip install cibuildwheel==1.3.0
29
+
30
+ - name : Build wheel
31
+ env :
32
+ CIBW_BEFORE_BUILD : " pip install numpy cython"
33
+ run : |
34
+ python -m cibuildwheel --output-dir wheelhouse
35
+
36
+ - uses : actions/upload-artifact@v1
37
+ with :
38
+ name : wheels
39
+ path : ./wheelhouse
40
+
41
+ build_windows :
42
+
43
+ runs-on : windows-2019
44
+
45
+ steps :
46
+ - uses : actions/checkout@v1
47
+ - name : Set up Python 3.8
48
+ uses : actions/setup-python@v1
49
+ with :
50
+ python-version : 3.8
24
51
25
52
- name : Install dependencies
26
53
run : |
You can’t perform that action at this time.
0 commit comments