Skip to content

Commit fa09acc

Browse files
committed
Python: update wheel script
1 parent ae945be commit fa09acc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

python/make-wheels.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
export PYTHONUSERBASE=/io/wheel-user-base
44

5-
for PYBIN in /opt/python/cp3*/bin; do
6-
$PYBIN/pip install --user -r requirements.txt
5+
for PYBIN in /opt/python/cp3[6789]*/bin; do
6+
$PYBIN/pip install --user --upgrade -r requirements.txt
77
$PYBIN/pip wheel . -w wheelhouse/
88
done
99

1010
for wheel in wheelhouse/libceed*-linux*.whl; do
1111
auditwheel repair "$wheel" --plat ${WHEEL_PLAT} -w wheelhouse/
1212
done
1313

14-
for PYBIN in /opt/python/cp3*/bin; do
15-
$PYBIN/pip install --user -r requirements-test.txt
16-
$PYBIN/pip install --user libceed --upgrade --no-index --find-links wheelhouse/
14+
for PYBIN in /opt/python/cp3[6789]*/bin; do
15+
$PYBIN/pip install --user --upgrade -r requirements-test.txt
16+
$PYBIN/pip install --user libceed --no-index --find-links wheelhouse/
1717
pushd tests/python
1818
$PYBIN/python setup-qfunctions.py build
1919
$PYBIN/python -m pytest test-*.py --ceed /cpu/self/opt/blocked -vv

0 commit comments

Comments
 (0)