@@ -25,14 +25,12 @@ def test_cpp14():
25
25
26
26
# VC++ for Python 2.7 does not support modern standards
27
27
# 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' }
30
29
31
30
actual_wheels = utils .cibuildwheel_run (project_dir , add_env = add_env )
32
31
expected_wheels = [w for w in utils .expected_wheels ('spam' , '0.1.0' )
33
32
if 'cp27-cp27m-win' not in w
34
- and 'pp27-pypy_73-win32' not in w
35
- and 'cp35-cp35m-win' not in w ]
33
+ and 'pp27-pypy_73-win32' not in w ]
36
34
37
35
assert set (actual_wheels ) == set (expected_wheels )
38
36
@@ -46,7 +44,7 @@ def test_cpp17():
46
44
if os .environ .get ('APPVEYOR_BUILD_WORKER_IMAGE' , '' ) == 'Visual Studio 2015' :
47
45
pytest .skip ('Visual Studio 2015 does not support C++17' )
48
46
49
- add_env = {'CIBW_SKIP' : 'cp27-win* pp27-win32 cp35-win* pp36-win32' , 'CIBW_ENVIRONMENT' : 'STANDARD=17' }
47
+ add_env = {'CIBW_SKIP' : 'cp27-win* pp27-win32 pp36-win32' , 'CIBW_ENVIRONMENT' : 'STANDARD=17' }
50
48
51
49
if utils .platform == 'macos' :
52
50
add_env ['MACOSX_DEPLOYMENT_TARGET' ] = '10.13'
@@ -55,7 +53,6 @@ def test_cpp17():
55
53
expected_wheels = [w for w in utils .expected_wheels ('spam' , '0.1.0' , macosx_deployment_target = '10.13' )
56
54
if 'cp27-cp27m-win' not in w
57
55
and 'pp27-pypy_73-win32' not in w
58
- and 'cp35-cp35m-win' not in w
59
56
and 'pp36-pypy36_pp73-win32' not in w ]
60
57
61
58
assert set (actual_wheels ) == set (expected_wheels )
0 commit comments