From 8c824d0e47a8fd4641eec2f5a9643fb52360e124 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 27 Oct 2022 00:28:04 +0200 Subject: [PATCH 1/2] Build packages for macOS x86_64 Python 3.11 The required images weren't available at the time of building the other packages. See #1514. The changeset includes temporary changes to skip other builds. They will be reverted before merging. --- .github/workflows/packages.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index f8caac66..60e3647e 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -6,6 +6,7 @@ on: jobs: build-sdist: + if: false strategy: fail-fast: false matrix: @@ -53,6 +54,7 @@ jobs: build-manylinux: + if: false strategy: fail-fast: false matrix: @@ -114,10 +116,11 @@ jobs: build-macos: runs-on: macos-latest + if: true strategy: fail-fast: false matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.11'] steps: - name: Checkout repos From deb00e5454858dd0ea84083a4969f9a244f61b43 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 27 Oct 2022 00:38:24 +0200 Subject: [PATCH 2/2] ci: re-enable builds suspended to build macOS packages for Python 3.11 --- .github/workflows/packages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 60e3647e..9e1f2ae7 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -6,7 +6,7 @@ on: jobs: build-sdist: - if: false + if: true strategy: fail-fast: false matrix: @@ -54,7 +54,7 @@ jobs: build-manylinux: - if: false + if: true strategy: fail-fast: false matrix: @@ -120,7 +120,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.11'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] steps: - name: Checkout repos