diff --git a/generate_a_winpython_distro.bat b/generate_a_winpython_distro.bat index e9c73d9a..cbb74682 100644 --- a/generate_a_winpython_distro.bat +++ b/generate_a_winpython_distro.bat @@ -162,7 +162,7 @@ set req_lock_local=%LOCKDIR%requirement.%my_flavor%-%WINPYARCH%bit-%WINPYVERLOCK set pip_lock_web=%LOCKDIR%pylock.%WINPYARCH%-%WINPYVERLOCK%%my_flavor%%my_release_level%.toml set pip_lock_local=%LOCKDIR%pylock.%WINPYARCH%-%WINPYVERLOCK%%my_flavor%%my_release_level%_local.toml set req_lock_web=%LOCKDIR%requirement.%WINPYARCH%-%WINPYVERLOCK%%my_flavor%%my_release_level%.txt -set req_lock_local=%LOCKDIR%requirement.%WINPYARCH%-%WINPYVERLOCK%%my_flavor%_local.txt +set req_lock_local=%LOCKDIR%requirement.%WINPYARCH%-%WINPYVERLOCK%%my_flavor%%my_release_level%_local.txt set my_archive_lockfile=%my_archive_dir%\pylock.%my_flavor%-%WINPYARCH%bit-%WINPYVERLOCK%_%date:/=-%at_%my_time%.toml diff --git a/portable/build_my_launchers.bat b/portable/build_my_launchers.bat index 579a96e6..2585eb5c 100644 --- a/portable/build_my_launchers.bat +++ b/portable/build_my_launchers.bat @@ -9,24 +9,29 @@ rem pick the right ones and rename them in launchers_final set do_launcher=%~dp0launchers_src\build_one_launcher.bat set do_launcher_original=%~dp0launchers_src_original\build_one_launcher.bat -::WINDOWS launchers -rem call %do_launcher% "python.ico" "winidle.bat" "IDLE (Python GUI)" WINDOWS proposed echo displace this pause if you want to re-build more pause rem exit -call %do_launcher% "powershell.ico" "cmd_ps.bat" "WinPython Powershell Prompt" WINDOWS proposed +:: WINDOWS launchers with Drag & Drop +call %do_launcher% "python.ico" "winidle.bat" "IDLE (Python GUI)" WINDOWS proposed call %do_launcher% "spyder.ico" "winspyder.bat" "Spyder" WINDOWS proposed -call %do_launcher% "spyder_reset.ico" "spyder_reset.bat" "Spyder reset" WINDOWS proposed -call %do_launcher% "code.ico" "winvscode.bat" "VS Code" WINDOWS proposed -:: CONSOLE launchers -call %do_launcher% "cmd.ico" "cmd.bat" "WinPython Command Prompt" CONSOLE proposed -call %do_launcher% "python.ico" "winpython.bat" "WinPython Interpreter" CONSOLE proposed +:: CONSOLE launchers with Drag & Drop call %do_launcher% "jupyter.ico" "winipython_notebook.bat" "Jupyter Notebook" CONSOLE proposed call %do_launcher% "jupyter.ico" "winjupyter_lab.bat" "Jupyter Lab" CONSOLE proposed call %do_launcher% "winpython.ico" "wpcp.bat" "WinPython Control Panel" CONSOLE proposed + +:: WINDOWS launchers with no Drag & Drop +call %do_launcher_original% "powershell.ico" "cmd_ps.bat" "WinPython Powershell Prompt" WINDOWS proposed +call %do_launcher_original% "spyder_reset.ico" "spyder_reset.bat" "Spyder reset" WINDOWS proposed +call %do_launcher_original% "code.ico" "winvscode.bat" "VS Code" WINDOWS proposed + +:: CONSOLE launchers with no Drag & Drop +call %do_launcher_original% "cmd.ico" "cmd.bat" "WinPython Command Prompt" CONSOLE proposed +call %do_launcher_original% "python.ico" "winpython.bat" "WinPython Interpreter" CONSOLE proposed + pause diff --git a/winpython/__init__.py b/winpython/__init__.py index 468eed57..d169819a 100644 --- a/winpython/__init__.py +++ b/winpython/__init__.py @@ -28,6 +28,6 @@ OTHER DEALINGS IN THE SOFTWARE. """ -__version__ = '16.4.20250603' +__version__ = '16.5.20250608' __license__ = __doc__ __project_url__ = 'http://winpython.github.io/' diff --git a/winpython/piptree.py b/winpython/piptree.py index e46bd465..1c61501e 100644 --- a/winpython/piptree.py +++ b/winpython/piptree.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """ -Enhanced script to inspect and display Python package dependencies, +piptree.py: inspect and display Python package dependencies, supporting both downward and upward dependency trees. Requires Python 3.8+ due to importlib.metadata. """