Skip to content

Commit

Permalink
Merge pull request #1182 from larsoner/bump-macos
Browse files Browse the repository at this point in the history
DOC: Bump to non-deprecated image
  • Loading branch information
joerick committed Jul 18, 2022
2 parents 61821a8 + a7b7d14 commit 98f5bc5
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions docs/setup.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/azure-pipelines-minimal.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
inputs: {pathtoPublish: 'wheelhouse'}

- job: macos
pool: {vmImage: 'macOS-10.15'}
pool: {vmImage: 'macOS-11'}
steps:
- task: UsePythonVersion@0
- bash: |
Expand Down
4 changes: 2 additions & 2 deletions examples/github-apple-silicon.yml
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/github-deploy.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/github-minimal.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/github-with-qemu.yml
Expand Up @@ -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
Expand Down

0 comments on commit 98f5bc5

Please sign in to comment.