Skip to content

Commit 43a13b6

Browse files
author
Jon
committed
move option back to workflow file
1 parent f9b005f commit 43a13b6

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,14 @@ jobs:
5252
- {
5353
name: "Ubuntu Latest (x86_64, manylinux)",
5454
os: ubuntu-latest,
55-
cibw-arch: manylinux_x86_64
55+
cibw-arch: manylinux_x86_64,
56+
CIBW_BEFORE_BUILD: "yum remove -y cmake"
5657
}
5758
- {
5859
name: "Ubuntu Latest (ARM64, manylinux)",
5960
os: ubuntu-latest,
6061
cibw-arch: manylinux_aarch64,
62+
CIBW_BEFORE_BUILD: "yum remove -y cmake",
6163
use-qemu: true
6264
}
6365
- {

pyproject.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,9 @@ skip = ["cp36-*", "cp37-*", "pp*", "*-win32"]
3030
[tool.cibuildwheel.windows]
3131
archs = ["auto64"]
3232

33-
[tool.cibuildwheel.linux]
34-
archs = ["auto", "aarch64"]
35-
before-build = "yum remove -y cmake"
36-
37-
[[tool.cibuildwheel.overrides]]
38-
select = "*muslllinux*"
39-
before-build = ""
33+
#[tool.cibuildwheel.linux]
34+
#archs = ["auto", "aarch64"]
35+
#before-build = "yum remove -y cmake"
4036

4137
[tool.cibuildwheel.macos]
4238
archs = ["x86_64", "arm64"]

0 commit comments

Comments
 (0)