File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,26 @@ jobs:
37
37
strategy :
38
38
fail-fast : false
39
39
matrix :
40
- os : [ubuntu-latest, windows-latest, macos-13]
40
+ os : [macos-13]
41
41
42
42
steps :
43
43
- uses : actions/checkout@v4
44
44
with :
45
45
submodules : true
46
46
47
-
47
+ - name : Install cibuildwheel
48
+ run : |
49
+ python -m pip install -U pip
50
+ # Use a branch while iOS support is in development and test-sources is unpublished.
51
+ # python -m pip install cibuildwheel==3.0.0
52
+ python -m pip install git+https://github.com/freakboy3742/cibuildwheel.git@ios-support
53
+
54
+ - name : Build wheels
55
+ run : python -m cibuildwheel
48
56
env :
49
- CIBW_ARCHS_MACOS : auto universal2
57
+ CIBW_PLATFORM : " macos"
58
+ CIBW_ARCHS : " auto"
59
+ CIBW_BUILD : " cp313*"
50
60
51
61
- name : Verify clean directory
52
62
run : git diff --exit-code
55
65
- name : Upload wheels
56
66
uses : actions/upload-artifact@v4
57
67
with :
58
- name : cibw-wheels-${{ matrix.os }}
68
+ name : cibw-wheels-macos
59
69
path : wheelhouse/*.whl
60
70
61
71
You can’t perform that action at this time.
0 commit comments