From fc3c7bcf4b4956cb9d7813822becd9295089e9da Mon Sep 17 00:00:00 2001 From: Gene Hoffman Date: Wed, 8 Apr 2020 10:09:51 -0700 Subject: [PATCH 1/3] Build python 3.8 builds too --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b870526d1..d1c3f2bec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,8 +53,8 @@ jobs: run: | python -m cibuildwheel --output-dir dist env: - # build just python 3.7 - CIBW_BUILD: cp37-* + # Python 3.7 and 3.8 + CIBW_BUILD: cp37-* cp37-* # don't build i686 targets, can't seem to find cmake for these CIBW_SKIP: '*-manylinux_i686' # we need boost From eccaf9a0e4de8d9b0cbf207c91380e29af1776e5 Mon Sep 17 00:00:00 2001 From: Gene Hoffman Date: Wed, 8 Apr 2020 10:21:57 -0700 Subject: [PATCH 2/3] quotes to cibuildwheel --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d1c3f2bec..570687954 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,7 +54,7 @@ jobs: python -m cibuildwheel --output-dir dist env: # Python 3.7 and 3.8 - CIBW_BUILD: cp37-* cp37-* + CIBW_BUILD: 'cp37-*' 'cp37-*' # don't build i686 targets, can't seem to find cmake for these CIBW_SKIP: '*-manylinux_i686' # we need boost From f6fb39ab4d913198b40841c02a737da4df99650a Mon Sep 17 00:00:00 2001 From: Gene Hoffman Date: Wed, 8 Apr 2020 10:25:42 -0700 Subject: [PATCH 3/3] Remove CIBW quotes --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 570687954..11d79160b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,7 +54,7 @@ jobs: python -m cibuildwheel --output-dir dist env: # Python 3.7 and 3.8 - CIBW_BUILD: 'cp37-*' 'cp37-*' + CIBW_BUILD: cp37-* cp38-* # don't build i686 targets, can't seem to find cmake for these CIBW_SKIP: '*-manylinux_i686' # we need boost