Browse Source

dist: Use manylinux2010 instead of manylinux1 by default

rdb 4 years ago
parent
commit
7462cee18b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      direct/src/dist/commands.py

+ 3 - 1
direct/src/dist/commands.py

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