From fe17d4bff95d2e59548f6991d475108b342bacb0 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 16 Nov 2022 12:44:03 +0000 Subject: [PATCH 1/2] Build python 3.11 wheels with latest cibuildwheel --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 2eb3bb8..466d4c4 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ "ubuntu-20.04", "windows-2019", "macos-11" ] + os: [ "ubuntu-latest", "windows-latest", "macos-latest" ] env: CIBW_ARCHS: auto64 # skip 3.6 on all platforms; skip pypy for windows @@ -27,7 +27,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: "3.10" - name: Install cibuildwheel run: python -m pip install cibuildwheel - name: Build wheels From 2817cba18b4da6fb55adb1653529a3b44258e62a Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 16 Nov 2022 14:18:57 +0000 Subject: [PATCH 2/2] Also build universal2 wheels on macOS Fixes https://github.com/fonttools/openstep-plist/issues/16 --- .github/workflows/wheels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 466d4c4..b07ae06 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -18,6 +18,7 @@ jobs: os: [ "ubuntu-latest", "windows-latest", "macos-latest" ] env: CIBW_ARCHS: auto64 + CIBW_ARCHS_MACOS: "x86_64 universal2" # skip 3.6 on all platforms; skip pypy for windows CIBW_SKIP: cp36-* pp*-win_amd64 steps: