Skip to content

Commit ea4d21e

Browse files
Merge pull request #921 from PowerGridModel/drop-manylinux-2-24
Drop manylinux_2_24 and MacOS < 13.3
2 parents 2e42a32 + 5f13f76 commit ea4d21e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ skip = ["pp*", "*-musllinux_aarch64"]
120120

121121
[tool.cibuildwheel.linux]
122122
archs = ["x86_64", "aarch64"]
123-
# force auditwheel to use manylinux_2_24 to support Amazon Linux 2 when building in manylinux_2_28
124-
repair-wheel-command = "auditwheel repair --plat ${AUDITWHEEL_PLAT//2_28/2_24} -w {dest_dir} {wheel}"
125123
environment = { CC = "gcc", CXX = "g++" }
126124
manylinux-x86_64-image = "manylinux_2_28"
127125
manylinux-aarch64-image = "manylinux_2_28"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def generate_build_ext(pkg_dir: Path, pkg_name: str):
188188
# extra flag for Mac
189189
if platform.system() == "Darwin":
190190
# compiler flag to set version
191-
cflags.append("-mmacosx-version-min=10.15")
191+
cflags.append("-mmacosx-version-min=13.3")
192192

193193
# list of extensions
194194
exts = [

0 commit comments

Comments
 (0)