Newer versions of numpy apparently aren't supported very well with pyinstaller yet. Force inclusion of module, otherwise automated build will cause graph support to fail

This commit is contained in:
blitzmann
2019-01-20 23:40:33 -05:00
parent 01f8c65304
commit 572d337935
2 changed files with 6 additions and 3 deletions

View File

@@ -27,8 +27,9 @@ added_files = [
('../../.version', '.'),
]
import_these = []
import_these = [
'numpy.core._dtype_ctypes' # https://github.com/pyinstaller/pyinstaller/issues/3982
]
icon = os.path.join(os.getcwd(), "dist_assets", "mac", "pyfa.icns")

View File

@@ -29,7 +29,9 @@ added_files = [
('../../.version', '.'),
]
import_these = []
import_these = [
'numpy.core._dtype_ctypes' # https://github.com/pyinstaller/pyinstaller/issues/3982
]
# Walk directories that do dynamic importing
paths = ('eos/effects', 'eos/db/migrations', 'service/conversions')