File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -40,20 +40,18 @@ def test_cpp17():
40
40
41
41
# Python and PyPy 2.7 use the `register` keyword which is forbidden in the C++17 standard
42
42
# 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
44
43
if os .environ .get ('APPVEYOR_BUILD_WORKER_IMAGE' , '' ) == 'Visual Studio 2015' :
45
44
pytest .skip ('Visual Studio 2015 does not support C++17' )
46
45
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' }
48
47
49
48
if utils .platform == 'macos' :
50
49
add_env ['MACOSX_DEPLOYMENT_TARGET' ] = '10.13'
51
50
52
51
actual_wheels = utils .cibuildwheel_run (project_dir , add_env = add_env )
53
52
expected_wheels = [w for w in utils .expected_wheels ('spam' , '0.1.0' , macosx_deployment_target = '10.13' )
54
53
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 ]
57
55
58
56
assert set (actual_wheels ) == set (expected_wheels )
59
57
You can’t perform that action at this time.
0 commit comments