Skip to content

no more spyder_light #227

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 25, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,9 +517,9 @@ def _create_launchers(self):
args='-m spyderlib.start_app',
workdir='${WINPYDIR}\Scripts',
settingspath=settingspath)
self.create_launcher('Spyder (light).exe', 'spyder_light.ico',
self.create_launcher('Spyder (reset).exe', 'spyder_reset.ico',
command='${WINPYDIR}\python.exe',
args='-m spyderlib.start_app --light',
args='-m spyderlib.start_app --reset',
workdir='${WINPYDIR}\Scripts',
settingspath=settingspath)

Expand Down Expand Up @@ -633,7 +633,7 @@ def _create_batch_scripts(self):

The purpose of these files is to help the user writing his/her own
batch file to call Python scripts inside WinPython.
The examples here ('spyder.bat', 'spyder_light.bat', 'wpcp.bat',
The examples here ('spyder.bat', 'spyder_reset.bat', 'wpcp.bat',
'pyqt_demo.bat', 'python.bat' and 'cmd.bat') are quite similar to the
launchers located in the parent directory.
The environment variables are set-up in 'env.bat'.""")
Expand Down Expand Up @@ -698,10 +698,10 @@ def _create_batch_scripts(self):
self.create_python_batch('spyder.bat', 'spyderlib.start_app',
workdir='Scripts',
command = '%WINPYDIR%\python.exe -m')
self.create_python_batch('spyder_light.bat', 'spyderlib.start_app',
self.create_python_batch('spyder_reset.bat', 'spyderlib.start_app',
workdir='Scripts',
command = '%WINPYDIR%\python.exe -m',
options='--light')
options='--reset')
self.create_python_batch('register_python.bat', 'register_python',
workdir='Scripts')
self.create_batch_script('register_python_for_all.bat',
Expand Down Expand Up @@ -800,7 +800,7 @@ def make(self, remove_existing=True, requirements=None): #, find_links=None):

# force update of pip (FIRST) and setuptools here
for req in ('pip', 'setuptools'):
actions = ["install","--upgrade", req]
actions = ["install","--upgrade", "--force-reinstall", req]
if self.install_options is not None:
actions += self.install_options
print("piping %s" % ' '.join(actions))
Expand Down
File renamed without changes.