File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,12 @@ def test():
8
8
pytest .skip ('the docker test is only relevant to the linux build' )
9
9
10
10
utils .cibuildwheel_run (project_dir , add_env = {
11
- 'CIBW_MANYLINUX1_X86_64_IMAGE' : 'dockcross/manylinux -x64' ,
12
- 'CIBW_MANYLINUX1_I686_IMAGE' : 'dockcross/manylinux -x86' ,
13
- 'CIBW_SKIP ' : '*-manylinux2010_*' , # No dockcross image for manylinux2010 (yet)
11
+ 'CIBW_MANYLINUX1_X86_64_IMAGE' : 'dockcross/manylinux1 -x64' ,
12
+ 'CIBW_MANYLINUX1_I686_IMAGE' : 'dockcross/manylinux1 -x86' ,
13
+ 'CIBW_MANYLINUX2010_X86_64_IMAGE ' : 'dockcross/manylinux2010-x64' ,
14
14
})
15
15
16
16
# also check that we got the right wheels built
17
- expected_wheels = [w for w in utils .expected_wheels ('spam' , '0.1.0' )
18
- if '-manylinux2010' not in w ]
17
+ expected_wheels = [w for w in utils .expected_wheels ('spam' , '0.1.0' )]
19
18
actual_wheels = os .listdir ('wheelhouse' )
20
19
assert set (actual_wheels ) == set (expected_wheels )
You can’t perform that action at this time.
0 commit comments