From 8c824d0e47a8fd4641eec2f5a9643fb52360e124 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 27 Oct 2022 00:28:04 +0200 Subject: [PATCH] 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