@@ -517,9 +517,9 @@ def _create_launchers(self):
517
517
args = '-m spyderlib.start_app' ,
518
518
workdir = '${WINPYDIR}\Scripts' ,
519
519
settingspath = settingspath )
520
- self .create_launcher ('Spyder (light ).exe' , 'spyder_light .ico' ,
520
+ self .create_launcher ('Spyder (reset ).exe' , 'spyder_reset .ico' ,
521
521
command = '${WINPYDIR}\python.exe' ,
522
- args = '-m spyderlib.start_app --light ' ,
522
+ args = '-m spyderlib.start_app --reset ' ,
523
523
workdir = '${WINPYDIR}\Scripts' ,
524
524
settingspath = settingspath )
525
525
@@ -633,7 +633,7 @@ def _create_batch_scripts(self):
633
633
634
634
The purpose of these files is to help the user writing his/her own
635
635
batch file to call Python scripts inside WinPython.
636
- The examples here ('spyder.bat', 'spyder_light .bat', 'wpcp.bat',
636
+ The examples here ('spyder.bat', 'spyder_reset .bat', 'wpcp.bat',
637
637
'pyqt_demo.bat', 'python.bat' and 'cmd.bat') are quite similar to the
638
638
launchers located in the parent directory.
639
639
The environment variables are set-up in 'env.bat'.""" )
@@ -698,10 +698,10 @@ def _create_batch_scripts(self):
698
698
self .create_python_batch ('spyder.bat' , 'spyderlib.start_app' ,
699
699
workdir = 'Scripts' ,
700
700
command = '%WINPYDIR%\python.exe -m' )
701
- self .create_python_batch ('spyder_light .bat' , 'spyderlib.start_app' ,
701
+ self .create_python_batch ('spyder_reset .bat' , 'spyderlib.start_app' ,
702
702
workdir = 'Scripts' ,
703
703
command = '%WINPYDIR%\python.exe -m' ,
704
- options = '--light ' )
704
+ options = '--reset ' )
705
705
self .create_python_batch ('register_python.bat' , 'register_python' ,
706
706
workdir = 'Scripts' )
707
707
self .create_batch_script ('register_python_for_all.bat' ,
@@ -800,7 +800,7 @@ def make(self, remove_existing=True, requirements=None): #, find_links=None):
800
800
801
801
# force update of pip (FIRST) and setuptools here
802
802
for req in ('pip' , 'setuptools' ):
803
- actions = ["install" ,"--upgrade" , req ]
803
+ actions = ["install" ,"--upgrade" , "--force-reinstall" , req ]
804
804
if self .install_options is not None :
805
805
actions += self .install_options
806
806
print ("piping %s" % ' ' .join (actions ))
0 commit comments