diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-03-06 09:52:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-06 09:52:56 +0200 |
commit | 31ff7f34809c5d1b9c35de8ccea262d8f480bbef (patch) | |
tree | 0f971c014e163ecd94c3339badcafd5b90d2cee1 | |
parent | ff4cfe7ecd46ee15fd88297964f6a5cb5423c291 (diff) | |
parent | 336fd8bbe0e7f7853fe2294e6060f55cc9d9d456 (diff) | |
download | numpy-31ff7f34809c5d1b9c35de8ccea262d8f480bbef.tar.gz |
Merge pull request #15716 from mattip/pypy4
TST: always use 'python -mpip' not 'pip'
-rwxr-xr-x | tools/pypy-test.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/pypy-test.sh b/tools/pypy-test.sh index af806a5f6..5e77d8046 100755 --- a/tools/pypy-test.sh +++ b/tools/pypy-test.sh @@ -31,7 +31,7 @@ wget -q http://buildbot.pypy.org/nightly/py3.6/pypy-c-jit-latest-linux64.tar.bz2 mkdir -p pypy3 (cd pypy3; tar --strip-components=1 -xf ../pypy.tar.bz2) pypy3/bin/pypy3 -mensurepip -pypy3/bin/pypy3 -m pip install --upgrade pip setuptools +pypy3/bin/pypy3 -m pip install --upgrade pip setuptools wheel pypy3/bin/pypy3 -m pip install --user -r test_requirements.txt --no-warn-script-location echo @@ -43,6 +43,5 @@ pypy3/bin/pypy3 runtests.py --debug-info --show-build-log -v -- -rsx \ --junitxml=junit/test-results.xml --durations 10 echo Make sure the correct openblas has been linked in - -pypy3/bin/pip install . +pypy3/bin/pypy3 -mpip install --no-build-isolation . pypy3/bin/pypy3 tools/openblas_support.py --check_version |