From 87e1d578da36cb12db69647240b869ff0d1439ba Mon Sep 17 00:00:00 2001 From: Alexis Arnaudon Date: Thu, 11 Feb 2021 22:40:36 +0100 Subject: [PATCH] Update python-publish.yml --- .github/workflows/python-publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index c8dbd4f..b127a57 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -34,12 +34,13 @@ jobs: - name: Install cibuildwheel run: | - python -m pip install cibuildwheel==1.6.4 pybind11 + python -m pip install cibuildwheel==1.6.4 - name: Build wheels on Linux if: runner.os == 'Linux' env: CIBW_BEFORE_BUILD: 'yum update -y' run: | + pip install pybind11 python -m cibuildwheel --output-dir dist - name: Build wheels Mac OS if: runner.os == 'macOS' @@ -49,6 +50,7 @@ jobs: brew unlink gcc@8 gcc@9 brew install cmake run: | + pip install pybind11 python -m cibuildwheel --output-dir dist - name: Store wheel as artifact uses: actions/upload-artifact@v2