File tree Expand file tree Collapse file tree 1 file changed +4
-17
lines changed Expand file tree Collapse file tree 1 file changed +4
-17
lines changed Original file line number Diff line number Diff line change 6
6
- published
7
7
jobs :
8
8
build_wheels :
9
- name : ${{ matrix.os }}
10
- runs-on : ${{ matrix.os }}
11
- strategy :
12
- matrix :
13
- os : [ubuntu-latest, macos-latest, windows-latest]
9
+ name : ubuntu-latest
10
+ runs-on : ubuntu-latest
14
11
15
12
steps :
16
13
- uses : actions/checkout@v2
@@ -19,20 +16,10 @@ jobs:
19
16
with :
20
17
python-version : 3.9
21
18
22
- - name : Install dependencies
23
- run : |
24
- python -m pip install --upgrade pip
25
- pip install -r requirements_build.txt
26
- pip install -U "cython"
27
- - name : Install cibuildwheel
28
- run : |
29
- python -m pip install cibuildwheel~=2.3
30
19
- name : Build wheel
31
- env :
32
- CIBW_SKIP : " pp*-win* *cp27* *cp35* *pp*"
33
- CIBW_BEFORE_BUILD : " pip install numpy cython"
34
20
run : |
35
- python -m cibuildwheel --output-dir wheelhouse
21
+ pip wheel -w wheelhouse/ .
22
+
36
23
- uses : actions/upload-artifact@v2
37
24
with :
38
25
name : wheels
You can’t perform that action at this time.
0 commit comments