Skip to content

Commit 536caba

Browse files
author
stonebig
committed
'spyder launcher' icons now rely on 'spyder.exe'
1 parent f10a5ee commit 536caba

File tree

1 file changed

+21
-18
lines changed

1 file changed

+21
-18
lines changed

make.py

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -517,12 +517,15 @@ def _create_launchers(self):
517517
workdir='${WINPYDIR}\Lib\idlelib')
518518
settingspath = osp.join('.spyder2', '.spyder.ini')
519519
self.create_launcher('Spyder.exe', 'spyder.ico',
520-
args='spyder', workdir='${WINPYDIR}\Scripts',
520+
command='${WINPYDIR}\Scripts\spyder.exe',
521+
workdir='${WINPYDIR}\Scripts',
521522
settingspath=settingspath)
522523
self.create_launcher('Spyder (light).exe', 'spyder_light.ico',
523-
args='spyder --light',
524+
args='--light',
525+
command='${WINPYDIR}\Scripts\spyder.exe',
524526
workdir='${WINPYDIR}\Scripts',
525527
settingspath=settingspath)
528+
526529
self.create_launcher('WinPython Control Panel.exe', 'winpython.ico',
527530
command='${WINPYDIR}\pythonw.exe',
528531
args='wpcp', workdir='${WINPYDIR}\Scripts')
@@ -1192,31 +1195,31 @@ def make_all(build_number, release_level, pyver,
11921195
# DO create only what version at a time
11931196
# You may have to manually delete previous build\winpython-.. directory
11941197

1195-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1198+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
11961199
# verbose=False, archis=(32, ))
1197-
make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1198-
verbose=False, archis=(64, ), flavor='')
1199-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython\basedirQt5',
1200+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
1201+
# verbose=False, archis=(64, ), flavor='')
1202+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython\basedirQt5',
12001203
# verbose=False, archis=(64, ))
1201-
#make_all(8, '', pyver='3.3', rootdir=r'D:\Winpython',
1204+
#make_all(9, '', pyver='3.3', rootdir=r'D:\Winpython',
12021205
# verbose=False, archis=(32, ))
1203-
#make_all(8, '', pyver='3.3', rootdir=r'D:\Winpython',
1206+
#make_all(9, '', pyver='3.3', rootdir=r'D:\Winpython',
12041207
# verbose=False, archis=(64, ))
1205-
#make_all(5, '', pyver='2.7', rootdir=r'D:\Winpython',
1206-
# verbose=False, archis=(32, ))
1207-
#make_all(5, '', pyver='2.7', rootdir=r'D:\Winpython',
1208+
make_all(1, '', pyver='2.7', rootdir=r'D:\Winpython',
1209+
verbose=False, archis=(32, ))
1210+
#make_all(1, '', pyver='2.7', rootdir=r'D:\Winpython',
12081211
# verbose=False, archis=(64, ))
1209-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1212+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
12101213
# verbose=False, archis=(64, ), flavor='FlavorIgraph')
1211-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1214+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
12121215
# verbose=False, archis=(32, ), flavor='FlavorKivy')
1213-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1216+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
12141217
# verbose=False, archis=(32, ), flavor='FlavorRfull')
1215-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1218+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
12161219
# verbose=False, archis=(64, ), flavor='FlavorRfull')
1217-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1220+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
12181221
# verbose=False, archis=(32, ), flavor='FlavorJulia')
1219-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1222+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
12201223
# verbose=False, archis=(64, ), flavor='FlavorJulia')
1221-
#make_all(3, '', pyver='3.4', rootdir=r'D:\Winpython',
1224+
#make_all(4, '', pyver='3.4', rootdir=r'D:\Winpython',
12221225
# verbose=False, archis=(32, ), flavor='FlavorRJulia')

0 commit comments

Comments
 (0)