makewheel: Use less restrictive extension module suffix on py3

This commit is contained in:
Mitchell Stokes 2017-01-09 19:49:18 -08:00
parent f8580d753a
commit 25b167c080

View File

@ -509,7 +509,7 @@ def makewheel(version, output_dir, platform=default_platform):
# default one adds the bin directory to the PATH, which we don't have.
whl.write_file_data('panda3d/__init__.py', '')
ext_suffix = GetExtensionSuffix()
ext_suffix = '.pyd' if sys.platform in ('win32', 'cygwin') else '.so'
ext_mod_dirs = [
(panda3d_dir, 'panda3d/'),