diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index e4e60913..848a2b94 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -27,8 +27,8 @@ def get_python_configurations(build_selector): PythonConfiguration(identifier='cp36-manylinux_i686', path='/opt/python/cp36-cp36m'), PythonConfiguration(identifier='cp37-manylinux_i686', path='/opt/python/cp37-cp37m'), PythonConfiguration(identifier='cp38-manylinux_i686', path='/opt/python/cp38-cp38'), - PythonConfiguration(identifier='pp271-manylinux_pypy_x86_64', path='/opt/python/pp271-pypy_41'), - PythonConfiguration(identifier='pp371-manylinux_pypy_x86_64', path='/opt/python/pp371-pypy3_71'), + PythonConfiguration(identifier='pp272-manylinux_pypy_x86_64', path='/opt/python/pp272-pypy_41'), + PythonConfiguration(identifier='pp372-manylinux_pypy_x86_64', path='/opt/python/pp372-pypy3_72'), ] # skip builds as required diff --git a/test/shared/utils.py b/test/shared/utils.py index beb2f357..fcacceb9 100644 --- a/test/shared/utils.py +++ b/test/shared/utils.py @@ -83,7 +83,7 @@ def expected_wheels(package_name, package_version, manylinux_versions=['manylinu if platform == 'linux': python_abi_tags.append('cp27-cp27mu') # python 2.7 has 2 different ABI on manylinux # Starting out by adding PyPy support on Linux - python_abi_tags.extend(['pp271-pypy_41', 'pp371-pypy3_71']) + python_abi_tags.extend(['pp272-pypy_41', 'pp372-pypy3_72']) cp_architectures = ['x86_64', 'i686'] pp_architectures = ['x86_64']