Skip to content

Commit

Permalink
Don't require blas on numpy install
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed Oct 6, 2023
1 parent 95bae2e commit 7621ca1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,13 @@ select = "*-musllinux*"
before-all = "apk add apk add --no-cache curl gcc && curl https://sh.rustup.rs -sSf | sh -s -- -y && source $HOME/.cargo/env && rustup install stable && rustup default stable"
test-skip = "cp37-* cp38-*"

[[tool.cibuildwheel.overrides]]
select = "*i686*"
before_test = 'python -m pip install numpy --config-settings=setup-args="-Dallow-noblas=true"'

[[tool.cibuildwheel.overrides]]
select = "*ppc64le*"
before_test = 'python -m pip install numpy --config-settings=setup-args="-Dallow-noblas=true"'

[tool.cibuildwheel.macos]
environment = "MACOSX_DEPLOYMENT_TARGET=10.9"

0 comments on commit 7621ca1

Please sign in to comment.