diff --git a/.travis-wheels.sh b/.travis-wheels.sh index b7a9f97..e03f61f 100755 --- a/.travis-wheels.sh +++ b/.travis-wheels.sh @@ -6,6 +6,7 @@ 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 @@ -13,3 +14,4 @@ done for whl in wheelhouse/*.whl; do auditwheel repair "$whl" -w /io/wheelhouse/ done + diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 0000000..f6629e0 --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1 @@ +cython