From 26081799d0a4605d051b81959fabec9830eafeae Mon Sep 17 00:00:00 2001 From: Thomas Finnie Date: Sat, 3 Aug 2024 08:34:43 +0100 Subject: [PATCH] Try a differnt way to provide blas --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b02fcf4..271d346 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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}-*"