Skip to content

Commit ba92364

Browse files
committed
Testing if cp35 works for modern C++
1 parent b71f514 commit ba92364

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/10_cpp_standards/cibuildwheel_test.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ def test_cpp14():
2525

2626
# VC++ for Python 2.7 does not support modern standards
2727
# The manylinux1 docker image does not have a compiler which supports C++11
28-
# Python 3.4 and 3.5 are compiled with MSVC 10, which does not support C++14
29-
add_env = {'CIBW_SKIP': 'cp27-win* pp27-win32 cp35-win*', 'CIBW_ENVIRONMENT': 'STANDARD=14'}
28+
add_env = {'CIBW_SKIP': 'cp27-win* pp27-win32', 'CIBW_ENVIRONMENT': 'STANDARD=14'}
3029

3130
actual_wheels = utils.cibuildwheel_run(project_dir, add_env=add_env)
3231
expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0')
@@ -46,7 +45,7 @@ def test_cpp17():
4645
if os.environ.get('APPVEYOR_BUILD_WORKER_IMAGE', '') == 'Visual Studio 2015':
4746
pytest.skip('Visual Studio 2015 does not support C++17')
4847

49-
add_env = {'CIBW_SKIP': 'cp27-win* pp27-win32 cp35-win* pp36-win32', 'CIBW_ENVIRONMENT': 'STANDARD=17'}
48+
add_env = {'CIBW_SKIP': 'cp27-win* pp27-win32 pp36-win32', 'CIBW_ENVIRONMENT': 'STANDARD=17'}
5049

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

0 commit comments

Comments
 (0)