File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 58
58
59
59
with :
60
60
python-version : ${{ matrix.python-version }}
61
+ - name : Install build dependencies (Linux) # Yasm in pypa/manylinux images.
62
+ run : sudo apt install yasm
63
+ if : runner.os == 'Linux'
64
+ - name : Install build dependencies (Macos)
65
+ run : brew install yasm automake autoconf
66
+ if : runner.os == 'macOS'
61
67
- name : Install twine, cython wheel and upgrade setuptools
62
68
run : pip install --upgrade twine cython wheel setuptools
63
69
- name : create dists
@@ -135,6 +141,12 @@ jobs:
135
141
submodules : recursive
136
142
- uses : actions/setup-python@v2
137
143
name : Install Python
144
+ - name : Install build dependencies (Linux) # Yasm in pypa/manylinux images.
145
+ run : sudo apt install yasm
146
+ if : runner.os == 'Linux'
147
+ - name : Install build dependencies (Macos)
148
+ run : brew install yasm automake autoconf
149
+ if : runner.os == 'macOS'
138
150
- name : Install cibuildwheel
139
151
run : python -m pip install cibuildwheel==1.8.0
140
152
env :
You can’t perform that action at this time.
0 commit comments