Skip to content

Commit 1ed7101

Browse files
authored
Merge pull request #1641 from stonebig/master
summarize launchers categories
2 parents ad21299 + 04b1b2c commit 1ed7101

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

portable/build_my_launchers.bat

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,29 @@ rem pick the right ones and rename them in launchers_final
99
set do_launcher=%~dp0launchers_src\build_one_launcher.bat
1010
set do_launcher_original=%~dp0launchers_src_original\build_one_launcher.bat
1111

12-
::WINDOWS launchers
13-
rem call %do_launcher% "python.ico" "winidle.bat" "IDLE (Python GUI)" WINDOWS proposed
1412

1513
echo displace this pause if you want to re-build more
1614
pause
1715
rem exit
1816

1917

20-
call %do_launcher% "powershell.ico" "cmd_ps.bat" "WinPython Powershell Prompt" WINDOWS proposed
18+
:: WINDOWS launchers with Drag & Drop
19+
call %do_launcher% "python.ico" "winidle.bat" "IDLE (Python GUI)" WINDOWS proposed
2120
call %do_launcher% "spyder.ico" "winspyder.bat" "Spyder" WINDOWS proposed
22-
call %do_launcher% "spyder_reset.ico" "spyder_reset.bat" "Spyder reset" WINDOWS proposed
23-
call %do_launcher% "code.ico" "winvscode.bat" "VS Code" WINDOWS proposed
2421

25-
:: CONSOLE launchers
26-
call %do_launcher% "cmd.ico" "cmd.bat" "WinPython Command Prompt" CONSOLE proposed
27-
call %do_launcher% "python.ico" "winpython.bat" "WinPython Interpreter" CONSOLE proposed
22+
:: CONSOLE launchers with Drag & Drop
2823
call %do_launcher% "jupyter.ico" "winipython_notebook.bat" "Jupyter Notebook" CONSOLE proposed
2924
call %do_launcher% "jupyter.ico" "winjupyter_lab.bat" "Jupyter Lab" CONSOLE proposed
3025
call %do_launcher% "winpython.ico" "wpcp.bat" "WinPython Control Panel" CONSOLE proposed
26+
27+
:: WINDOWS launchers with no Drag & Drop
28+
call %do_launcher_original% "powershell.ico" "cmd_ps.bat" "WinPython Powershell Prompt" WINDOWS proposed
29+
call %do_launcher_original% "spyder_reset.ico" "spyder_reset.bat" "Spyder reset" WINDOWS proposed
30+
call %do_launcher_original% "code.ico" "winvscode.bat" "VS Code" WINDOWS proposed
31+
32+
:: CONSOLE launchers with no Drag & Drop
33+
call %do_launcher_original% "cmd.ico" "cmd.bat" "WinPython Command Prompt" CONSOLE proposed
34+
call %do_launcher_original% "python.ico" "winpython.bat" "WinPython Interpreter" CONSOLE proposed
35+
3136
pause
3237

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '16.4.20250603'
31+
__version__ = '16.5.20250608'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

winpython/piptree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
Enhanced script to inspect and display Python package dependencies,
3+
piptree.py: inspect and display Python package dependencies,
44
supporting both downward and upward dependency trees.
55
Requires Python 3.8+ due to importlib.metadata.
66
"""

0 commit comments

Comments
 (0)