Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Numpy wants blas #1201

Merged
merged 15 commits into from
Sep 18, 2023
11 changes: 10 additions & 1 deletion api/py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ test-command = """pytest {project}"""
[tool.cibuildwheel.linux]
skip = "cp312-* *-musllinux_i686"
before-build = """
set -ex
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
Expand All @@ -32,10 +34,17 @@ RUSTC_WRAPPER=sccache
archs = "x86_64 universal2 arm64"
skip = "cp312-*"
before-build = """
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]
skip = "cp312-* *-win32"
# pip install numpy --config-settings=setup-args="-Dallow-noblas=true"
before-build = """
choco install mingw --version=8.1.0
pip install "numpy==1.24.4"
pip install "numpy==1.25.2"
"""
skip = "cp312-* *-win32 cp36-* cp37-* pp*"

Loading