Skip to content

Commit

Permalink
Fixed manylinux built
Browse files Browse the repository at this point in the history
  • Loading branch information
dputhier committed Mar 24, 2022
1 parent da920b5 commit 16566e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manylinux/build_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ yum install zlib-devel -y
yum install bzip2-devel -y
yum install xz xz-devel -y
yum install -y libjpeg-devel
yum install -y openblas
yum install -y openblas-devel

# Compile wheels
for PYBIN in $(ls --color=none -d1 /opt/python/*/bin| grep -P "38"); do
for PYBIN in $(ls --color=none -d1 /opt/python/*/bin| grep -P "39"); do
echo "${PYBIN}"
echo ""
"${PYBIN}/python3" -m pip install --upgrade pip
"${PYBIN}/pip" install -U pip
"${PYBIN}/pip" install numpy>=1.10.0
"${PYBIN}/pip" install cython
Expand Down

0 comments on commit 16566e3

Please sign in to comment.