File tree 2 files changed +6
-10
lines changed
2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 17
17
uses : actions/setup-python@v5
18
18
with :
19
19
python-version : ' 3.x'
20
- architecture : ' x64'
21
20
cache : " pip"
22
21
cache-dependency-path : |
23
22
requirements.txt
Original file line number Diff line number Diff line change @@ -14,29 +14,25 @@ jobs:
14
14
name : Build wheels on ${{ matrix.os }}
15
15
16
16
steps :
17
- - name : Checkout
18
- uses : actions/checkout@v4
19
-
20
17
- name : Set up QEMU
21
18
if : runner.os == 'Linux'
22
19
uses : docker/setup-qemu-action@v3
23
20
with :
24
- platforms : arm64
21
+ platforms : all
25
22
26
- - name : Set up Python 3.x
27
- uses : actions/setup-python@v5
23
+ - uses : actions/checkout@v4
24
+ - uses : actions/setup-python@v5
28
25
with :
29
26
python-version : " 3.x"
30
27
cache : " pip"
31
-
32
- - name : Prepare
28
+ - name : Cythonize
33
29
shell : bash
34
30
run : |
35
31
pip install -r requirements.txt
36
32
make cython
37
33
38
34
- name : Build
39
- uses : pypa/cibuildwheel@v2.16.5
35
+ uses : pypa/cibuildwheel@v2.17.0
40
36
env :
41
37
CIBW_TEST_REQUIRES : " pytest"
42
38
CIBW_TEST_COMMAND : " pytest {package}/test"
45
41
CIBW_SKIP : pp*
46
42
47
43
- name : Build pure Python wheel
44
+ if : runner.os == 'Linux'
48
45
env :
49
46
MSGPACK_PUREPYTHON : " 1"
50
47
run : |
You can’t perform that action at this time.
0 commit comments