deploy-ng: fix wrong platform tag for 32-bit Linux in bdist_apps

This commit is contained in:
rdb 2018-10-28 20:47:44 +01:00
parent 54b3474670
commit 305621338f

View File

@ -1126,7 +1126,7 @@ class build_apps(setuptools.Command):
class bdist_apps(setuptools.Command):
DEFAULT_INSTALLERS = {
'manylinux1_x86_64': ['gztar'],
'manylinux1_i386': ['gztar'],
'manylinux1_i686': ['gztar'],
# Everything else defaults to ['zip']
}