mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 16:20:11 -04:00
dist: set default platform tag for macOS to macosx_10_9_x86_64
This is in accordance with #300. It will still pick macosx_10_6_x86_64 wheels if the 10.9 wheels are not available.
This commit is contained in:
parent
390abac276
commit
f1575eafbc
5
direct/src/dist/commands.py
vendored
5
direct/src/dist/commands.py
vendored
@ -237,12 +237,9 @@ class build_apps(setuptools.Command):
|
|||||||
self.icons = {}
|
self.icons = {}
|
||||||
self.platforms = [
|
self.platforms = [
|
||||||
'manylinux1_x86_64',
|
'manylinux1_x86_64',
|
||||||
'macosx_10_6_x86_64',
|
'macosx_10_9_x86_64',
|
||||||
'win_amd64',
|
'win_amd64',
|
||||||
]
|
]
|
||||||
if sys.version_info >= (3, 8):
|
|
||||||
# This version of Python is only available for 10.9+.
|
|
||||||
self.platforms[1] = 'macosx_10_9_x86_64'
|
|
||||||
self.plugins = []
|
self.plugins = []
|
||||||
self.embed_prc_data = True
|
self.embed_prc_data = True
|
||||||
self.extra_prc_files = []
|
self.extra_prc_files = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user