Skip to content

Commit

Permalink
Try a differnt way to provide blas
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Finnie committed Aug 3, 2024
1 parent ad99e3d commit 2608179
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ manylinux-x86_64-image = "manylinux2014"

# Install blas on linux
[tool.cibuildwheel.linux]
before-all = "yum -y update && yum -y install openblas-devel openblas"
before-test = "yum -y update && yum -y install openblas-devel openblas"

#before-all = "yum -y update && yum -y install openblas-devel openblas"
#before-test = "yum -y update && yum -y install openblas-devel openblas"
before-all = "python -m pip install -r requirements/openblas.txt && python -c "import scipy_openblas32; print(scipy_openblas32.get_pkg_config())" > {project}/scipy-openblas.pc"

[[tool.cibuildwheel.overrides]]
select = "cp3{8,9}-*"
Expand Down

0 comments on commit 2608179

Please sign in to comment.