summaryrefslogtreecommitdiff
path: root/ci/manylinux.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/manylinux.sh')
-rwxr-xr-xci/manylinux.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/manylinux.sh b/ci/manylinux.sh
index 57439898..31f3bed8 100755
--- a/ci/manylinux.sh
+++ b/ci/manylinux.sh
@@ -35,10 +35,11 @@ elif [[ $action == "test" ]]; then
done
# Install packages and test
- TOXBIN=/opt/python/cp27-cp27m/bin
- "$TOXBIN/pip" install -r /io/requirements/ci.pip
+ TOXBIN=/opt/python/cp36-cp36m/bin
+ "$TOXBIN/pip" install -r /io/requirements/tox.pip
cd /io
+ export PYTHONPYCACHEPREFIX=/opt/pyc
TOXWORKDIR=.tox_linux "$TOXBIN/tox" "$@" || true
cd ~