From dd26ef8ac6c5c71a32f2f41d407ce61bfce8a028 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Wed, 6 Nov 2019 19:21:51 +0100 Subject: [PATCH] Updated PyPy from 7.1.1 to 7.2.0 --- cibuildwheel/linux.py | 4 ++-- test/shared/utils.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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']