From cd53552b4bf626c34975fcf4fd956dcd424aca58 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Sat, 3 Oct 2020 21:37:17 +0200 Subject: [PATCH] Change examples to use macOS >= 10.14 --- README.md | 2 ++ examples/circleci-minimal.yml | 3 ++- examples/travis-ci-deploy.yml | 2 ++ examples/travis-ci-minimal.yml | 2 ++ examples/travis-ci-test-and-deploy.yml | 2 ++ 5 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 062edf6b..c0907425 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,8 @@ jobs: - services: docker # and a mac build - os: osx + # PyPy 7.3.2 needs macOS >= 10.14 + osx_image: xcode10.2 language: shell # and a windows build - os: windows diff --git a/examples/circleci-minimal.yml b/examples/circleci-minimal.yml index 1ce2b02a..6f1cd665 100644 --- a/examples/circleci-minimal.yml +++ b/examples/circleci-minimal.yml @@ -19,7 +19,8 @@ jobs: osx-wheels: working_directory: ~/osx-wheels macos: - xcode: "10.0.0" + # PyPy 7.3.2 needs macOS >= 10.14 + xcode: 10.2.1 steps: - checkout - run: diff --git a/examples/travis-ci-deploy.yml b/examples/travis-ci-deploy.yml index 8eea3c4e..a2d6c704 100644 --- a/examples/travis-ci-deploy.yml +++ b/examples/travis-ci-deploy.yml @@ -9,6 +9,8 @@ jobs: - services: docker # and a mac build - os: osx + # PyPy 7.3.2 needs macOS >= 10.14 + osx_image: xcode10.2 language: shell # and a windows build - os: windows diff --git a/examples/travis-ci-minimal.yml b/examples/travis-ci-minimal.yml index 85c24165..f972fbdb 100644 --- a/examples/travis-ci-minimal.yml +++ b/examples/travis-ci-minimal.yml @@ -15,6 +15,8 @@ jobs: arch: s390x # and a mac build - os: osx + # PyPy 7.3.2 needs macOS >= 10.14 + osx_image: xcode10.2 language: shell # and a windows build - os: windows diff --git a/examples/travis-ci-test-and-deploy.yml b/examples/travis-ci-test-and-deploy.yml index 8352f7d3..efdf6df8 100644 --- a/examples/travis-ci-test-and-deploy.yml +++ b/examples/travis-ci-test-and-deploy.yml @@ -64,6 +64,8 @@ jobs: - stage: deploy name: Build and deploy macOS wheels os: osx + # PyPy 7.3.2 needs macOS >= 10.14 + osx_image: xcode10.2 language: shell install: python3 -m pip install cibuildwheel==1.6.1 script: python3 -m cibuildwheel --output-dir wheelhouse