Skip to content

Commit

Permalink
Try installing openblas to fix numpy build
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed Oct 7, 2023
1 parent d68bcf6 commit a57590b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ before-all = "apk add apk add --no-cache curl gcc && curl https://sh.rustup.rs -
test-skip = "cp37-* cp38-*"

[[tool.cibuildwheel.overrides]]
select = "*i686*"
before_test = 'python -m pip install numpy --config-settings=setup-args="-Dallow-noblas=true"'
select = "*i686"
skip = "pp* cp36-* cp37-* *win32" "*-musllinux*"
before_test = 'yum install openblas-devel'

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

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

0 comments on commit a57590b

Please sign in to comment.