summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Källberg <anka.213@gmail.com>2020-10-08 21:50:12 +0200
committerAndreas Källberg <anka.213@gmail.com>2020-10-08 21:50:12 +0200
commit7b4eeb368ceaa89bdd23500822e72f1a908cffb4 (patch)
tree7f445cc3951e138d6c617bc21facc83d8bce651d
parentf2e4b89a22a1c7c7304e3a712e47e6d9f3f763e8 (diff)
Make CI green
See https://github.com/joerick/cibuildwheel/issues/446
-rw-r--r--.github/workflows/build-python-package.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml
index 45e94b853..921da9fb5 100644
--- a/.github/workflows/build-python-package.yml
+++ b/.github/workflows/build-python-package.yml
@@ -21,7 +21,7 @@ jobs:
- name: Install cibuildwheel
run: |
- python -m pip install cibuildwheel==1.4.2
+ python -m pip install git+https://github.com/joerick/cibuildwheel.git@master
- name: Install build tools for OSX
if: startsWith(matrix.os, 'macos')
@@ -69,7 +69,7 @@ jobs:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
-
+
steps:
- uses: actions/checkout@v2