diff options
author | mattip <matti.picus@gmail.com> | 2021-02-05 13:11:10 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2021-02-05 13:11:10 +0200 |
commit | de766c8768e87843b601adfc709613e8ff27f957 (patch) | |
tree | aafb01788d2b3aec742c826b1096d71a623b2a33 /.github | |
parent | 0a1bd4ead41b1fdfb53142097b5e08555f280545 (diff) | |
download | numpy-de766c8768e87843b601adfc709613e8ff27f957.tar.gz |
TST: use setup-python action for pypy, disable win64 pypy
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_test.yml | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index ce0c492e6..c45563d25 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -182,21 +182,9 @@ jobs: with: submodules: recursive fetch-depth: 0 - - name: get_pypy - run: | - wget -q https://downloads.python.org/pypy/pypy3.7-v7.3.3-linux64.tar.bz2 -O pypy.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 wheel - if [ ! -e pypy3/bin/python ] - then - pushd pypy3/bin - ln -s pypy3 python - popd - fi - echo $PWD/pypy3/bin >> $GITHUB_PATH - + - uses: actions/setup-python@v2 + with: + python-version: pypy-3.7 - uses: ./.github/actions sdist: |