dist: Use manylinux2010 instead of manylinux1 by default

This commit is contained in:
rdb 2021-08-26 10:47:38 +02:00
parent 53741ffa13
commit 7462cee18b

View File

@ -180,7 +180,7 @@ class build_apps(setuptools.Command):
self.exclude_modules = {} self.exclude_modules = {}
self.icons = {} self.icons = {}
self.platforms = [ self.platforms = [
'manylinux1_x86_64', 'manylinux2010_x86_64',
'macosx_10_9_x86_64', 'macosx_10_9_x86_64',
'win_amd64', 'win_amd64',
] ]
@ -1330,6 +1330,8 @@ class bdist_apps(setuptools.Command):
DEFAULT_INSTALLERS = { DEFAULT_INSTALLERS = {
'manylinux1_x86_64': ['gztar'], 'manylinux1_x86_64': ['gztar'],
'manylinux1_i686': ['gztar'], 'manylinux1_i686': ['gztar'],
'manylinux2010_x86_64': ['gztar'],
'manylinux2010_i686': ['gztar'],
# Everything else defaults to ['zip'] # Everything else defaults to ['zip']
} }