From 25b167c0805d18a3808b25b88b562f95c0708c1a Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Mon, 9 Jan 2017 19:49:18 -0800 Subject: [PATCH] makewheel: Use less restrictive extension module suffix on py3 --- makepanda/makewheel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makewheel.py b/makepanda/makewheel.py index af4dd30c90..a110386438 100644 --- a/makepanda/makewheel.py +++ b/makepanda/makewheel.py @@ -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/'),