diff --git a/api/py/pyproject.toml b/api/py/pyproject.toml index 2cdcb77cbb..18a82c7217 100644 --- a/api/py/pyproject.toml +++ b/api/py/pyproject.toml @@ -16,7 +16,7 @@ test-command = """pytest {project}""" skip = "cp312-* *-musllinux_i686" before-build = """ set -ex -yum install -y openblas-devel cmake pkgconfig +pip install numpy --config-settings=setup-args="-Dallow-noblas=true" cargo --version || (curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal . $HOME/.cargo/env rustup toolchain add stable @@ -34,14 +34,14 @@ RUSTC_WRAPPER=sccache archs = "x86_64 universal2 arm64" skip = "cp312-*" before-build = """ -brew install openblas cmake +pip install numpy --config-settings=setup-args="-Dallow-noblas=true" rustup target add aarch64-apple-darwin [ -e $HOME/.local/bin/sccache ] || ./.travis/setup-sccache.sh ] """ [tool.cibuildwheel.windows] before-build = """ -pip install numpy -C-Dallow-noblas=true +pip install numpy --config-settings=setup-args="-Dallow-noblas=true" """ skip = "cp312-* *-win32"