Skip to content

Commit 7da027d

Browse files
committed
Remove unnecessary steps, replace brew with conda
1 parent 00138fe commit 7da027d

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: sudo apt install yasm
6363
if: runner.os == 'Linux'
6464
- name: Install build dependencies (Macos)
65-
run: brew install yasm automake autoconf
65+
run: conda install yasm automake autoconf
6666
if: runner.os == 'macOS'
6767
- name: Install twine, cython wheel and upgrade setuptools
6868
run: pip install --upgrade twine cython wheel setuptools
@@ -99,7 +99,7 @@ jobs:
9999
run: sudo apt install yasm
100100
if: runner.os == 'Linux'
101101
- name: Install build dependencies (Macos)
102-
run: brew install yasm automake autoconf
102+
run: conda install yasm automake autoconf
103103
if: runner.os == 'macOS'
104104
- name: Run tests
105105
run: tox -e py3
@@ -144,12 +144,6 @@ jobs:
144144
submodules: recursive
145145
- uses: actions/setup-python@v2
146146
name: Install Python
147-
- name: Install build dependencies (Linux) # Yasm in pypa/manylinux images.
148-
run: sudo apt install yasm
149-
if: runner.os == 'Linux'
150-
- name: Install build dependencies (Macos)
151-
run: brew install yasm automake autoconf
152-
if: runner.os == 'macOS'
153147
- name: Install cibuildwheel
154148
run: python -m pip install cibuildwheel==1.8.0
155149
env:

0 commit comments

Comments
 (0)