From 4f3228388c80f8cbdfe6a987b5b4dd25356e697a Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sat, 27 Jul 2019 20:10:12 +0300 Subject: [PATCH] Try forcing module which is causing issues --- dist_assets/mac/pyfa.spec | 2 +- dist_assets/win/pyfa.spec | 2 +- pyfa.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist_assets/mac/pyfa.spec b/dist_assets/mac/pyfa.spec index 7736dad23..cad2d8bad 100644 --- a/dist_assets/mac/pyfa.spec +++ b/dist_assets/mac/pyfa.spec @@ -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 ] diff --git a/dist_assets/win/pyfa.spec b/dist_assets/win/pyfa.spec index 11d64e02a..89d82c306 100644 --- a/dist_assets/win/pyfa.spec +++ b/dist_assets/win/pyfa.spec @@ -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 ] diff --git a/pyfa.spec b/pyfa.spec index 38b20ed0c..56f4f4f14 100644 --- a/pyfa.spec +++ b/pyfa.spec @@ -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 ]