Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Bump to non-deprecated image #1182

Merged
merged 2 commits into from Jul 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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