Skip to content

Commit bfe6224

Browse files
committed
Do not install cmake via pip in manylinux build.
Installing cmake via pip in the manylinux environment can lead to compatibility issues with the system's native compiler. Instead, rely on the system-installed version of cmake to ensure better compatibility and stability during the build process.
1 parent b8c3e03 commit bfe6224

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ epigeec = [
5151
build = ["cp311-*", "cp312-*", "cp313-*"]
5252
skip = ["*-musllinux*", "*-manylinux_i686"] # ignore 32-bit Linux builds
5353
before-build = [
54-
"pip install cmake",
5554
"cmake .",
5655
"make -j $(nproc || echo 4)",
56+
"echo '--- Filesystem after make ---'",
57+
"ls -R"
5758
]
5859

5960
[tool.cibuildwheel.linux]

0 commit comments

Comments
 (0)