File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,7 @@ 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' )
@@ -46,7 +45,7 @@ def test_cpp17():
46
45
if os .environ .get ('APPVEYOR_BUILD_WORKER_IMAGE' , '' ) == 'Visual Studio 2015' :
47
46
pytest .skip ('Visual Studio 2015 does not support C++17' )
48
47
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' }
50
49
51
50
if utils .platform == 'macos' :
52
51
add_env ['MACOSX_DEPLOYMENT_TARGET' ] = '10.13'
You can’t perform that action at this time.
0 commit comments