Skip to content

Commit 7e7e49b

Browse files
committed
No numpy and scipy for pypy
1 parent 6445bcc commit 7e7e49b

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.travis.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -270,16 +270,14 @@ install:
270270
export CXXFLAGS="-stdlib=libc++"
271271
fi
272272
273-
export NPY_NUM_BUILD_JOBS=2
274-
echo "Installing pytest, numpy, scipy..."
275273
local PIP_CMD=""
276-
if [ -n $PYPY ]; then
277-
# For expediency, install only versions that are available on the extra index.
278-
travis_wait 30 \
279-
$PY_CMD -m pip install --user --upgrade --extra-index-url https://imaginary.ca/trusty-pypi \
280-
pytest numpy==1.15.4 scipy==1.2.0
274+
export NPY_NUM_BUILD_JOBS=2
275+
if [ -n "$PYPY" ]; then
276+
echo Installing "pytest"
277+
$PY_CMD -m pip install --user --upgrade pytest
281278
else
282-
$PY_CMD -m pip install --user --upgrade pytest numpy scipy
279+
echo "Installing pytest, numpy, scipy..."
280+
$PY_CMD -m pip install --user --upgrade pytest numpy scipy
283281
fi
284282
echo "done."
285283

0 commit comments

Comments
 (0)