Try forcing module which is causing issues

This commit is contained in:
DarkPhoenix
2019-07-27 20:10:12 +03:00
parent 81e3edc041
commit 4f3228388c
3 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ added_files = [
import_these = [
'numpy.core._dtype_ctypes', # https://github.com/pyinstaller/pyinstaller/issues/3982
'numpy.random.common', # https://github.com/pyfa-org/Pyfa/issues/1998
'numpy.random.mtrand', # https://github.com/pyfa-org/Pyfa/issues/1998
'sqlalchemy.ext.baked' # windows build doesn't launch without if when using sqlalchemy 1.3.x
]

View File

@@ -30,7 +30,7 @@ added_files = [
import_these = [
'numpy.core._dtype_ctypes', # https://github.com/pyinstaller/pyinstaller/issues/3982
'numpy.random.common', # https://github.com/pyfa-org/Pyfa/issues/1998
'numpy.random.mtrand', # https://github.com/pyfa-org/Pyfa/issues/1998
'sqlalchemy.ext.baked' # windows build doesn't launch without if when using sqlalchemy 1.3.x
]

View File

@@ -52,7 +52,7 @@ if os_name == 'Darwin':
import_these = [
'numpy.core._dtype_ctypes', # https://github.com/pyinstaller/pyinstaller/issues/3982
'numpy.random.common', # https://github.com/pyfa-org/Pyfa/issues/1998
'numpy.random.mtrand', # https://github.com/pyfa-org/Pyfa/issues/1998
'sqlalchemy.ext.baked' # windows build doesn't launch without if when using sqlalchemy 1.3.x
]