Skip to content

Commit d1d4bee

Browse files
committed
⚡️🐛Instruct pip to not compile Python cache files
1 parent d1d52a6 commit d1d4bee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

travis/build-manylinux1-wheels.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ yum -y install \
106106
>&2 echo Upgrading auditwheel...
107107
>&2 echo =======================
108108
>&2 echo
109-
/opt/python/cp36-cp36m/bin/python -m pip install -U auditwheel
109+
/opt/python/cp36-cp36m/bin/python -m pip install --no-compile -U auditwheel
110110

111111
>&2 echo
112112
>&2 echo
@@ -230,7 +230,7 @@ done
230230
for PIP_BIN in /opt/python/*/bin/pip; do
231231
cleanup_garbage
232232
>&2 echo Using ${PIP_BIN}...
233-
${PIP_BIN} install "${DIST_NAME}" --no-index -f ${WHEEL_DEP_DIR} #&
233+
${PIP_BIN} install --no-compile "${DIST_NAME}" --no-index -f ${WHEEL_DEP_DIR} #&
234234
done
235235
wait
236236

@@ -277,7 +277,7 @@ done
277277
>&2 echo
278278
for PY_BIN in /opt/python/*/bin/python; do
279279
cleanup_garbage
280-
$PY_BIN -B -m pip install pytest
280+
$PY_BIN -B -m pip install --no-compile pytest
281281
$PY_BIN -B -m pytest "${TESTS_DIR}" &
282282
done
283283
wait

0 commit comments

Comments
 (0)