File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 81
81
run : sudo apt install yasm
82
82
if : runner.os == 'Linux'
83
83
- name : Install build dependencies (Macos)
84
- run : brew install nasm automake autoconf
84
+ # Install yasm because nasm does not work when building wheels.
85
+ # Probably because of nasm-filter.sh not filtering all flags that can not be used.
86
+ run : brew install yasm automake autoconf
85
87
if : runner.os == 'macOS'
86
88
- name : Set MSVC developer prompt
87
89
@@ -141,7 +143,7 @@ jobs:
141
143
- name : Install cibuildwheel twine wheel
142
144
run : python -m pip install cibuildwheel twine wheel
143
145
- name : Install build dependencies (Macos)
144
- run : brew install nasm automake autoconf
146
+ run : brew install yasm automake autoconf
145
147
if : runner.os == 'macOS'
146
148
- name : Set MSVC developer prompt
147
149
You can’t perform that action at this time.
0 commit comments