Commit 5b1cb67f authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Unpin Pypy numpy version

parent e9eecb2e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -71,8 +71,7 @@ PIP="${PY_EXE} $(which pip)"
if test "$EXTRA_INSTALL" != ""; then
  for i in $EXTRA_INSTALL ; do
    if [ "$i" = "numpy" ] && [[ "${PY_EXE}" == pypy* ]]; then
      # That commit is *just* before they started checking pypy versions...
      $PIP install git+https://bitbucket.org/pypy/numpy.git@823b091
      $PIP install git+https://bitbucket.org/pypy/numpy.git
    elif [ "$i" = "numpy" ] && [[ "${PY_EXE}" == python2.6* ]]; then
      $PIP install 'numpy==1.10.4'
    else