Skip to content

Commit 7339b39

Browse files
committed
Install python on linux for deployment, install wheel
1 parent a1b17bf commit 7339b39

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ jobs:
139139
uses: conda-incubator/[email protected] # https://github.com/conda-incubator/setup-miniconda.
140140
with:
141141
channels: conda-forge,defaults
142+
- name: Install build dependencies (Linux)
143+
run: conda install python
144+
if: runner.os == 'Linux'
142145
- name: Install build dependencies (Macos)
143146
run: conda install nasm automake autoconf python
144147
if: runner.os == 'macOS'
@@ -148,8 +151,8 @@ jobs:
148151
- name: Set MSVC developer prompt
149152
uses: ilammy/[email protected]
150153
if: runner.os == 'Windows'
151-
- name: Install cibuildwheel twine
152-
run: python -m pip install cibuildwheel twine
154+
- name: Install cibuildwheel twine wheel
155+
run: python -m pip install cibuildwheel twine wheel
153156
- name: Build wheels
154157
run: cibuildwheel --output-dir dist
155158
env:

0 commit comments

Comments
 (0)