From 71cbe31915aea5c5fbf8001ba60b0a290834bd3c Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Wed, 22 Sep 2021 12:47:24 +0200 Subject: [PATCH] github-workflow: remove macOS from os matrix and reduce set of archs to build for --- .github/workflows/pypi-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi-deploy.yml b/.github/workflows/pypi-deploy.yml index 9ef872c..021b68e 100644 --- a/.github/workflows/pypi-deploy.yml +++ b/.github/workflows/pypi-deploy.yml @@ -26,8 +26,8 @@ jobs: needs: [build_setup] strategy: matrix: - os: [ubuntu-20.04, windows-2019, macOS-11] - arch: [auto32, auto64, aarch64, ppc64le, s390x] + os: [ubuntu-20.04, windows-2019] + arch: [auto32, auto64, aarch64] steps: - uses: actions/checkout@v2