From b08fc65a6fe465f5748a34bb81d4be69c0486810 Mon Sep 17 00:00:00 2001 From: Jens Vagelpohl Date: Tue, 8 Nov 2022 11:00:09 +0100 Subject: - update with meta/config to fix macOS build issues --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4b8941d..97faf3c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -154,14 +154,13 @@ jobs: pip install -U pip pip install -U setuptools wheel twine cffi - - name: Build zope.security (Python 3.10+ on MacOS) + - name: Build zope.security (Python 3.10 and 3.11 on MacOS) if: > startsWith(runner.os, 'Mac') - && startsWith(matrix.python-version, '3.1') + && (startsWith(matrix.python-version, '3.10') + || startsWith(matrix.python-version, '3.11')) env: - MACOSX_DEPLOYMENT_TARGET: 10.9 - _PYTHON_HOST_PLATFORM: macosx-10.9-universal2 - ARCHFLAGS: -arch arm64 -arch x86_64 + _PYTHON_HOST_PLATFORM: macosx-11-x86_64 run: | # Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure # output (pip install uses a random temporary directory, making this difficult). @@ -174,7 +173,8 @@ jobs: - name: Build zope.security (all other versions) if: > !startsWith(runner.os, 'Mac') - || !startsWith(matrix.python-version, '3.1') + || !(startsWith(matrix.python-version, '3.10') + || startsWith(matrix.python-version, '3.11')) run: | # Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure # output (pip install uses a random temporary directory, making this difficult). -- cgit v1.2.1