File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -5,22 +5,18 @@ from path import Path
5
5
6
6
block_cipher = None
7
7
8
- spyder_fonts = Path (site .getsitepackages ()[- 1 ]) / 'spyder/fonts '
8
+ spyder_data = Path (site .getsitepackages ()[- 1 ]) / 'spyder'
9
9
parso_grammar = Path (site .getsitepackages ()[- 1 ]) / 'parso/python/grammar36.txt'
10
10
11
11
if sys .platform == 'linux' :
12
12
oce_dir = Path (sys .prefix ) / 'share' / 'oce-0.18'
13
13
else :
14
14
oce_dir = Path (sys .prefix ) / 'Library' / 'share' / 'oce'
15
15
16
- with open ('dummy' ,'wb' ):
17
- pass
18
-
19
16
a = Analysis (['run.py' ],
20
17
pathex = ['/home/adam/cq/CQ-editor' ],
21
18
binaries = [],
22
- datas = [('dummy' , 'spyder/utils' ),
23
- (spyder_fonts ,'spyder/fonts' ),
19
+ datas = [(spyder_data ,'spyder' ),
24
20
(parso_grammar , 'parso/python' ),
25
21
(oce_dir , 'oce' )],
26
22
hiddenimports = ['ipykernel.datapub' ],
You can’t perform that action at this time.
0 commit comments