Skip to content

Commit

Permalink
Return to suppling our own Blas
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Finnie committed Aug 3, 2024
1 parent dc8c20c commit f57b052
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ jobs:
- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.19.2
run: python -m pip install cibuildwheel>=2.19.2

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_SKIP: win32
#env:
# CIBW_SKIP: win32

- uses: actions/upload-artifact@v4
with:
Expand Down
14 changes: 8 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,15 @@ manylinux-x86_64-image = "manylinux2014"
before-all = """
#yum -y update && yum -y install pkgconfig openblas-devel openblas
pip install --prefer-binary scipy>=1.10.1
#python -m pip install --upgrade pip
#pip install --prefer-binary scipy>=1.10.1
# Note we can't just use the version from yum as it doesn't have a pkgconfig
#git clone https://github.com/OpenMathLib/OpenBLAS.git
#cd OpenBLAS
#make -j8
#make PREFIX=/usr/local/OpenBLAS install
#export PKG_CONFIG_PATH=/usr/local/OpenBLAS/lib/pkgconfig
git clone https://github.com/OpenMathLib/OpenBLAS.git
cd OpenBLAS
make -j8
make PREFIX=/usr/local/OpenBLAS install
export PKG_CONFIG_PATH=/usr/local/OpenBLAS/lib/pkgconfig
"""
#
# "yum -y update && yum -y install pkgconfig openblas-devel openblas"
Expand Down

0 comments on commit f57b052

Please sign in to comment.