Skip to content

Commit 0df0cb5

Browse files
authored
Update Spec Files
1 parent ac7c56d commit 0df0cb5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

voicelab_osx.spec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# -*- mode: python ; coding: utf-8 -*-
2+
from PyInstaller.utils.hooks import collect_data_files
23

34
block_cipher = None
45

56

67
a = Analysis(['voicelab.py'],
78
pathex=['VoiceLab'],
89
binaries=[],
9-
datas=[],
10-
hiddenimports=['cmath', 'sklearn.utils._weight_vector'],
10+
datas=collect_data_files('librosa'),
11+
hiddenimports=['cmath', 'sklearn.utils._weight_vector', 'sklearn.neighbors._partition_nodes'],
1112
hookspath=[],
1213
runtime_hooks=[],
1314
excludes=[],
@@ -38,5 +39,5 @@ coll = COLLECT(exe,
3839
name='VoiceLab')
3940
app = BUNDLE(coll,
4041
name='VoiceLab.app',
41-
icon='favicon.ico',
42+
icon='Voicelab/favicon.ico',
4243
bundle_identifier=None)

0 commit comments

Comments
 (0)