Skip to content

Commit 01ac4a2

Browse files
authored
Merge pull request #18 from travis-ci/pypy-numpy
Install numpy via cpyext on PyPy
2 parents 9800bf5 + 849db1e commit 01ac4a2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bin/compile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ fi
1414

1515
function install_numpy() {
1616
if [[ $VERSION == pypy* ]]; then
17-
$HOME/virtualenv/$VIRTENV_VERSION/bin/pip -m pip install git+https://bitbucket.org/pypy/numpy.git
18-
else
19-
$HOME/virtualenv/$VIRTENV_VERSION/bin/pip install --upgrade $CPYTHON_ONLY_PKGS
17+
$HOME/virtualenv/$VIRTENV_VERSION/bin/pypy -m ensurepip
2018
fi
19+
$HOME/virtualenv/$VIRTENV_VERSION/bin/pip install --upgrade numpy
2120
}
2221

2322
set -o xtrace

0 commit comments

Comments
 (0)