We don't actually have a dev-requirements.txt

This commit is contained in:
Quantum 2018-08-22 16:46:16 -04:00
parent b26cde687a
commit 358027eee1

View file

@ -6,7 +6,6 @@ yum install -y atlas-devel
# Compile wheels
for PYBIN in /opt/python/*/bin; do
"${PYBIN}/pip" install -r /io/dev-requirements.txt
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
done
@ -14,4 +13,3 @@ done
for whl in wheelhouse/*.whl; do
auditwheel repair "$whl" -w /io/wheelhouse/
done