Skip to content

Commit 5b12ac8

Browse files
authored
Use PyPy binaries from manylinux image instead of our own (#7678) (#7693)
1 parent 277ee0d commit 5b12ac8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/wheel-builder.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,30 +26,30 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
PYTHON:
29-
- { VERSION: "cp36-cp36m", PATH: "/opt/python/cp36-cp36m/bin/python", ABI_VERSION: 'cp36' }
30-
- { VERSION: "pypy3.7", PATH: "/opt/pypy3.7/bin/pypy" }
31-
- { VERSION: "pypy3.8", PATH: "/opt/pypy3.8/bin/pypy" }
32-
- { VERSION: "pypy3.9", PATH: "/opt/pypy3.9/bin/pypy" }
29+
- { VERSION: "cp36-cp36m", ABI_VERSION: 'cp36' }
30+
- { VERSION: "pp37-pypy37_pp73" }
31+
- { VERSION: "pp38-pypy38_pp73" }
32+
- { VERSION: "pp39-pypy39_pp73" }
3333
MANYLINUX:
3434
- { NAME: "manylinux2014_x86_64", CONTAINER: "cryptography-manylinux2014:x86_64" }
3535
- { name: "manylinux_2_24_x86_64", CONTAINER: "cryptography-manylinux_2_24:x86_64"}
3636
- { name: "manylinux_2_28_x86_64", CONTAINER: "cryptography-manylinux_2_28:x86_64"}
3737
- { name: "musllinux_1_1_x86_64", CONTAINER: "cryptography-musllinux_1_1:x86_64"}
3838
exclude:
3939
# There are no readily available musllinux PyPy distributions
40-
- PYTHON: { VERSION: "pypy3.7", PATH: "/opt/pypy3.7/bin/pypy" }
40+
- PYTHON: { VERSION: "pp37-pypy37_pp73" }
4141
MANYLINUX: { name: "musllinux_1_1_x86_64", CONTAINER: "cryptography-musllinux_1_1:x86_64" }
42-
- PYTHON: { VERSION: "pypy3.8", PATH: "/opt/pypy3.8/bin/pypy" }
42+
- PYTHON: { VERSION: "pp38-pypy38_pp73" }
4343
MANYLINUX: { name: "musllinux_1_1_x86_64", CONTAINER: "cryptography-musllinux_1_1:x86_64"}
44-
- PYTHON: { VERSION: "pypy3.9", PATH: "/opt/pypy3.9/bin/pypy" }
44+
- PYTHON: { VERSION: "pp39-pypy39_pp73" }
4545
MANYLINUX: { name: "musllinux_1_1_x86_64", CONTAINER: "cryptography-musllinux_1_1:x86_64"}
4646
name: "${{ matrix.PYTHON.VERSION }} for ${{ matrix.MANYLINUX.NAME }}"
4747
steps:
4848
- uses: actions/[email protected]
4949
with:
5050
# The tag to build or the tag received by the tag event
5151
ref: ${{ github.event.inputs.version || github.ref }}
52-
- run: ${{ matrix.PYTHON.PATH }} -m venv .venv
52+
- run: /opt/python/${{ matrix.PYTHON.VERSION }}/bin/python -m venv .venv
5353
- name: Install Python dependencies
5454
run: .venv/bin/pip install -U pip wheel cffi setuptools-rust
5555
- name: Make sdist

0 commit comments

Comments
 (0)