Skip to content

Commit 0e1878b

Browse files
committed
DOC: Bump to non-deprecated image
1 parent 7c922f9 commit 0e1878b

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
runs-on: ${{ matrix.os }}
8181
strategy:
8282
matrix:
83-
os: [ubuntu-20.04, windows-2019, macOS-10.15]
83+
os: [ubuntu-20.04, windows-2019, macOS-11.0]
8484

8585
steps:
8686
- uses: actions/checkout@v3

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
python ./bin/run_tests.py
1212
1313
- job: macos_38
14-
pool: {vmImage: 'macOS-10.15'}
14+
pool: {vmImage: 'macOS-11'}
1515
steps:
1616
- task: UsePythonVersion@0
1717
inputs:

docs/setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
176176
runs-on: ${{ matrix.os }}
177177
strategy:
178178
matrix:
179-
os: [ubuntu-20.04, windows-2019, macos-10.15]
179+
os: [ubuntu-20.04, windows-2019, macos-11]
180180

181181
steps:
182182
- uses: actions/checkout@v3
@@ -208,7 +208,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
208208
runs-on: ${{ matrix.os }}
209209
strategy:
210210
matrix:
211-
os: [ubuntu-20.04, windows-2019, macos-10.15]
211+
os: [ubuntu-20.04, windows-2019, macos-11]
212212

213213
steps:
214214
- uses: actions/checkout@v3

examples/azure-pipelines-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
inputs: {pathtoPublish: 'wheelhouse'}
1515

1616
- job: macos
17-
pool: {vmImage: 'macOS-10.15'}
17+
pool: {vmImage: 'macOS-11'}
1818
steps:
1919
- task: UsePythonVersion@0
2020
- bash: |

examples/github-apple-silicon.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on: [push, pull_request]
44

55
jobs:
66
build_wheels_macos:
7-
name: Build wheels on macos-10.15
8-
runs-on: macos-10.15
7+
name: Build wheels on macos-11
8+
runs-on: macos-11
99
steps:
1010
- uses: actions/checkout@v3
1111

examples/github-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
os: [ubuntu-20.04, windows-2019, macos-10.15]
19+
os: [ubuntu-20.04, windows-2019, macos-11]
2020

2121
steps:
2222
- uses: actions/checkout@v3

examples/github-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-20.04, windows-2019, macos-10.15]
11+
os: [ubuntu-20.04, windows-2019, macos-11]
1212

1313
steps:
1414
- uses: actions/checkout@v3

examples/github-with-qemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-20.04, windows-2019, macos-10.15]
11+
os: [ubuntu-20.04, windows-2019, macos-11]
1212

1313
steps:
1414
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)