diff --git a/README.md b/README.md index 84f1947b..6994ff80 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macOS-10.15] + os: [ubuntu-20.04, windows-2019, macOS-11.0] steps: - uses: actions/checkout@v3 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a5497a46..56131899 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,7 @@ jobs: python ./bin/run_tests.py - job: macos_38 - pool: {vmImage: 'macOS-10.15'} + pool: {vmImage: 'macOS-11'} steps: - task: UsePythonVersion@0 inputs: diff --git a/docs/setup.md b/docs/setup.md index 73aa8619..9d5e4a8c 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -176,7 +176,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/ runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-11] steps: - uses: actions/checkout@v3 @@ -208,7 +208,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/ runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-11] steps: - uses: actions/checkout@v3 diff --git a/examples/azure-pipelines-minimal.yml b/examples/azure-pipelines-minimal.yml index de1847e6..119bd8f4 100644 --- a/examples/azure-pipelines-minimal.yml +++ b/examples/azure-pipelines-minimal.yml @@ -14,7 +14,7 @@ jobs: inputs: {pathtoPublish: 'wheelhouse'} - job: macos - pool: {vmImage: 'macOS-10.15'} + pool: {vmImage: 'macOS-11'} steps: - task: UsePythonVersion@0 - bash: | diff --git a/examples/github-apple-silicon.yml b/examples/github-apple-silicon.yml index eafdf216..af0b993f 100644 --- a/examples/github-apple-silicon.yml +++ b/examples/github-apple-silicon.yml @@ -4,8 +4,8 @@ on: [push, pull_request] jobs: build_wheels_macos: - name: Build wheels on macos-10.15 - runs-on: macos-10.15 + name: Build wheels on macos-11 + runs-on: macos-11 steps: - uses: actions/checkout@v3 diff --git a/examples/github-deploy.yml b/examples/github-deploy.yml index bb4a4e31..1ec1385c 100644 --- a/examples/github-deploy.yml +++ b/examples/github-deploy.yml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-11] steps: - uses: actions/checkout@v3 diff --git a/examples/github-minimal.yml b/examples/github-minimal.yml index 3862aed8..963e5258 100644 --- a/examples/github-minimal.yml +++ b/examples/github-minimal.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-11] steps: - uses: actions/checkout@v3 diff --git a/examples/github-with-qemu.yml b/examples/github-with-qemu.yml index dcdcdbea..01426723 100644 --- a/examples/github-with-qemu.yml +++ b/examples/github-with-qemu.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019, macos-11] steps: - uses: actions/checkout@v3