File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ added_files = [
29
29
30
30
31
31
import_these = [
32
- 'numpy.core._dtype_ctypes' # https://github.com/pyinstaller/pyinstaller/issues/3982
32
+ 'numpy.core._dtype_ctypes' , # https://github.com/pyinstaller/pyinstaller/issues/3982
33
+ 'sqlalchemy.ext.baked' # windows build doesn't launch without if when using sqlalchemy 1.3.x
33
34
]
34
35
35
36
icon = os .path .join (os .getcwd (), "dist_assets" , "mac" , "pyfa.icns" )
@@ -86,4 +87,4 @@ app = BUNDLE(
86
87
'CFBundleDisplayName' : 'pyfa' ,
87
88
'CFBundleIdentifier' : 'org.pyfaorg.pyfa' ,
88
89
}
89
- )
90
+ )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ added_files = [
17
17
('../../imgs/gui/*.gif' , 'imgs/gui' ),
18
18
('../../imgs/icons/*.png' , 'imgs/icons' ),
19
19
('../../imgs/renders/*.png' , 'imgs/renders' ),
20
- ('../../service/jargon/*.yaml' , 'service/jargon' ),
20
+ ('../../service/jargon/*.yaml' , 'service/jargon' ),
21
21
('../../dist_assets/win/pyfa.ico' , '.' ),
22
22
('../../dist_assets/win/pyfa.exe.manifest' , '.' ),
23
23
('../../dist_assets/win/Microsoft.VC90.CRT.manifest' , '.' ),
@@ -29,7 +29,8 @@ added_files = [
29
29
]
30
30
31
31
import_these = [
32
- 'numpy.core._dtype_ctypes' # https://github.com/pyinstaller/pyinstaller/issues/3982
32
+ 'numpy.core._dtype_ctypes' , # https://github.com/pyinstaller/pyinstaller/issues/3982
33
+ 'sqlalchemy.ext.baked' # windows build doesn't launch without if when using sqlalchemy 1.3.x
33
34
]
34
35
35
36
# Walk directories that do dynamic importing
You can’t perform that action at this time.
0 commit comments