This is an automated email from the ASF dual-hosted git repository. jmalkin pushed a commit to branch muslinux-wheels in repository https://gitbox.apache.org/repos/asf/datasketches-python.git
commit 43a13b65545b2bef8fe123c9066969f81b14ae6b Author: Jon <[email protected]> AuthorDate: Tue Apr 9 23:59:31 2024 -0700 move option back to workflow file --- .github/workflows/build_wheels.yml | 4 +++- pyproject.toml | 10 +++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 28734dc..5daef5f 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -52,12 +52,14 @@ jobs: - { name: "Ubuntu Latest (x86_64, manylinux)", os: ubuntu-latest, - cibw-arch: manylinux_x86_64 + cibw-arch: manylinux_x86_64, + CIBW_BEFORE_BUILD: "yum remove -y cmake" } - { name: "Ubuntu Latest (ARM64, manylinux)", os: ubuntu-latest, cibw-arch: manylinux_aarch64, + CIBW_BEFORE_BUILD: "yum remove -y cmake", use-qemu: true } - { diff --git a/pyproject.toml b/pyproject.toml index 0284419..7d514d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,13 +30,9 @@ skip = ["cp36-*", "cp37-*", "pp*", "*-win32"] [tool.cibuildwheel.windows] archs = ["auto64"] -[tool.cibuildwheel.linux] -archs = ["auto", "aarch64"] -before-build = "yum remove -y cmake" - -[[tool.cibuildwheel.overrides]] -select = "*muslllinux*" -before-build = "" +#[tool.cibuildwheel.linux] +#archs = ["auto", "aarch64"] +#before-build = "yum remove -y cmake" [tool.cibuildwheel.macos] archs = ["x86_64", "arm64"] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
