@@ -5,18 +5,26 @@ set -e -x
5
5
sudo yum install -y atlas-devel
6
6
7
7
# Compile wheels
8
- for PYBIN in /opt/python/* /bin; do
8
+ for PYBIN in /opt/python/* cp38 /bin; do
9
9
# sudo ${PYBIN}/pip install -r ./dev-requirements.txt
10
- LDSHARED=" $CC -shared" ${PYBIN} /pip wheel . -w wheelhouse/
10
+ sudo ${PYBIN} /pip install -U pip setuptools
11
+ sudo ${PYBIN} /pip install wheel numpy Cython pybind11
12
+ # LDSHARED="$CC -shared" \
13
+ # ${PYBIN}/pip wheel . -w wheelhouse/ \
14
+ # --no-deps \
15
+ # --build-option --plat-name=manylinux2014_aarch64
16
+
17
+ LDSHARED=" $CC -shared" ${PYBIN} /python ./setup.py bdist_wheel -b wheelhouse/ \
18
+ --plat-name manylinux2014_aarch64
11
19
done
12
20
13
21
# Bundle external shared libraries into the wheels
14
- for whl in wheelhouse/* .whl; do
15
- auditwheel repair $whl -w ./wheelhouse/
16
- done
22
+ # for whl in wheelhouse/*.whl; do
23
+ # auditwheel repair $whl -w ./wheelhouse/
24
+ # done
17
25
18
26
# Install packages and test
19
- for PYBIN in /opt/python/* /bin/; do
20
- sudo ${PYBIN} /pip install python-manylinux-demo --no-index -f ./wheelhouse
21
- (cd $HOME ; ${PYBIN} /nosetests pymanylinuxdemo)
22
- done
27
+ # for PYBIN in /opt/python/*/bin/; do
28
+ # sudo ${PYBIN}/pip install python-manylinux-demo --no-index -f ./wheelhouse
29
+ # (cd $HOME; ${PYBIN}/nosetests pymanylinuxdemo)
30
+ # done
0 commit comments