Skip to content

Commit 5986c91

Browse files
committed
Also try to build C++14/C++17 wheels for PyPy 3.6 with default MSVC
1 parent 63421d4 commit 5986c91

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/10_cpp_standards/cibuildwheel_test.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,18 @@ def test_cpp17():
4040

4141
# Python and PyPy 2.7 use the `register` keyword which is forbidden in the C++17 standard
4242
# The manylinux1 docker image does not have a compiler which supports C++11
43-
# Python 3.5 and PyPy 3.6 are compiled with MSVC 10, which does not support C++17
4443
if os.environ.get('APPVEYOR_BUILD_WORKER_IMAGE', '') == 'Visual Studio 2015':
4544
pytest.skip('Visual Studio 2015 does not support C++17')
4645

47-
add_env = {'CIBW_SKIP': 'cp27-win* pp27-win32 pp36-win32', 'CIBW_ENVIRONMENT': 'STANDARD=17'}
46+
add_env = {'CIBW_SKIP': 'cp27-win* pp27-win32', 'CIBW_ENVIRONMENT': 'STANDARD=17'}
4847

4948
if utils.platform == 'macos':
5049
add_env['MACOSX_DEPLOYMENT_TARGET'] = '10.13'
5150

5251
actual_wheels = utils.cibuildwheel_run(project_dir, add_env=add_env)
5352
expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0', macosx_deployment_target='10.13')
5453
if 'cp27-cp27m-win' not in w
55-
and 'pp27-pypy_73-win32' not in w
56-
and 'pp36-pypy36_pp73-win32' not in w]
54+
and 'pp27-pypy_73-win32' not in w]
5755

5856
assert set(actual_wheels) == set(expected_wheels)
5957

0 commit comments

Comments
 (0)