Skip to content

Commit ee6002f

Browse files
Merge pull request #1001 from PowerGridModel/fix/macos-version
MacOS build still fails when using clang-17
2 parents 34643f7 + 845b27f commit ee6002f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-test-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
os: ubuntu-24.04-arm
187187
cibw_build: "*_aarch64"
188188
- platform: macos
189-
os: macos-14
189+
os: macos-15
190190
cibw_build: "*"
191191
- platform: windows
192192
os: windows-latest
@@ -204,7 +204,7 @@ jobs:
204204
path: .
205205

206206
- name: Set up XCode
207-
if: matrix.os == 'macos-14'
207+
if: matrix.os == 'macos-15'
208208
uses: maxim-lobanov/setup-xcode@v1
209209
with:
210210
xcode-version: latest-stable

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ musllinux-x86_64-image = "musllinux_1_2"
126126

127127
[tool.cibuildwheel.macos]
128128
archs = ["x86_64", "arm64"]
129-
environment = { CC = "clang", CXX = "clang++", MACOSX_DEPLOYMENT_TARGET = "13.3" }
129+
environment = { CC = "clang", CXX = "clang++", MACOSX_DEPLOYMENT_TARGET = "13.4" }
130130

131131
[tool.cibuildwheel.windows]
132132
archs = ["AMD64"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
elif platform.system() in ["Linux", "Darwin"]:
2020
if_win = False
2121
if platform.system() == "Darwin":
22-
os.environ["MACOSX_DEPLOYMENT_TARGET"] = "13.3"
22+
os.environ["MACOSX_DEPLOYMENT_TARGET"] = "13.4"
2323
else:
2424
raise SystemError("Only Windows, Linux, or MacOS is supported!")
2525

0 commit comments

Comments
 (0)