Skip to content

Commit 9e068a2

Browse files
committed
Support only macOS 14.0+
1 parent eb58e99 commit 9e068a2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/CI-wheels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [macos-13, windows-2022, ubuntu-24.04]
22+
os: [macos-14, windows-2022, ubuntu-24.04]
2323

2424
steps:
2525
- uses: actions/checkout@v5

.github/workflows/Publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323
strategy:
2424
matrix:
25-
os: [ubuntu-24.04, macos-13, windows-2022]
25+
os: [ubuntu-24.04, macos-14, windows-2022]
2626

2727
steps:
2828
- uses: actions/checkout@v5
@@ -34,7 +34,7 @@ jobs:
3434
platforms: all
3535

3636
- name: Prepare Apple Keychain for Signing
37-
if: matrix.os == 'macos-13'
37+
if: matrix.os == 'macos-14'
3838
shell: bash
3939
run: |
4040
# store certificate on filesystem
@@ -71,7 +71,7 @@ jobs:
7171
uses: pypa/[email protected]
7272

7373
- name: Cleanup Apple Keychain
74-
if: matrix.os == 'macos-13'
74+
if: matrix.os == 'macos-14'
7575
shell: bash
7676
run: |
7777
security lock-keychain ${APPLE_SIGNING_KEYCHAIN_PATH}
@@ -113,7 +113,7 @@ jobs:
113113
path: dist
114114
- uses: actions/download-artifact@v6
115115
with:
116-
name: wheels-macos-13
116+
name: wheels-macos-14
117117
path: dist
118118
- uses: actions/download-artifact@v6
119119
with:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ archs = ["x86_64", "aarch64"]
142142

143143
[tool.cibuildwheel.macos]
144144
archs = ["x86_64", "arm64"]
145-
# macOS arm64 is cross-compiled and can not be tested.
146-
# cibuildwheel skips it already. *_arm64 this removes the warning
145+
# macOS x86_64 is cross-compiled and can not be tested.
146+
# cibuildwheel skips it already. *_x86_64 this removes the warning
147147
# > requires changing wheel names
148-
test-skip = "*_arm64"
148+
test-skip = "*_x86_64"
149149

150150
[tool.hatch.build]
151151
exclude = [

0 commit comments

Comments
 (0)