Making manylinux1 still the default for manylinux_i686 builds

This commit is contained in:
Yannick Jadoul
2019-10-16 00:35:20 +02:00
parent 1220fbbd4b
commit c6f1382813
6 changed files with 21 additions and 18 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ def main():
# TODO Add documentation on CIBW_ENVIRONMENT and possibility of AUDITWHEEL_PLAT if not defined by custom manylinux image
manylinux_x86_64_image = os.environ.get('CIBW_MANYLINUX_X86_64_IMAGE', 'manylinux2010')
manylinux_i686_image = os.environ.get('CIBW_MANYLINUX_I686_IMAGE', '')
manylinux_i686_image = os.environ.get('CIBW_MANYLINUX_I686_IMAGE', 'manylinux1')
default_manylinux_images_x86_64 = {'manylinux1': 'quay.io/pypa/manylinux1_x86_64',
'manylinux2010': 'quay.io/pypa/manylinux2010_x86_64'}