Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1ed7101

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

File tree

Expand file treeCollapse file tree

3 files changed

+15
-10
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+15
-10
lines changed
Open diff view settings
Collapse file

‎portable/build_my_launchers.bat‎

Copy file name to clipboardExpand all lines: portable/build_my_launchers.bat
+13-8Lines 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

Collapse file

‎winpython/__init__.py‎

Copy file name to clipboardExpand all lines: winpython/__init__.py
+1-1Lines 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/'
Collapse file

‎winpython/piptree.py‎

Copy file name to clipboardExpand all lines: winpython/piptree.py
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.