X Tutup
Skip to content

Commit f42184a

Browse files
committed
revert to NSIS launcher and normalize to /python/python.exe
1 parent ccd04f5 commit f42184a

File tree

3 files changed

+231
-18
lines changed

3 files changed

+231
-18
lines changed

generate_a_winpython_distro.bat

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ rem 2.8 post-build (if specific workarounds)
2525
rem 2.9 archive success
2626
rem 3.0 Generate Changelog and binaries
2727

28-
rem "my_release_level" is optionaly set per the calling program
28+
rem "my_release_level" is optionaly set per the calling program *********************************************
2929
rem set my_release_level=
30-
if "%my_release_level%"=="" set my_release_level=
30+
if "%my_release_level%"=="" set my_release_level=b1
3131

3232
rem "my_create_installer" is optionaly set per the calling program
3333
if "%my_create_installer%"=="" set my_create_installer=True
@@ -85,13 +85,13 @@ if %my_python_target%==311 (
8585
)
8686

8787
if %my_python_target%==312 (
88-
set my_python_target_release=3126
89-
set my_release=1
88+
set my_python_target_release=3128
89+
set my_release=0
9090
)
9191

9292
if %my_python_target%==313 (
93-
set my_python_target_release=3130
94-
set my_release=2
93+
set my_python_target_release=3131
94+
set my_release=0
9595
)
9696

9797

@@ -230,15 +230,15 @@ set
230230

231231

232232
echo ----------------------------------------
233-
echo 2.3 (%date% %time%) add mandatory packages for build 'msvc_runtime'.. still necessary ?
233+
echo 2.3 (%date% %time%) add mandatory packages for build 'msvc_runtime'.. still necessary ? 2024-12-22 dropped
234234
echo ----------------------------------------
235235
echo ---------------------------------------- >>%my_archive_log%
236-
echo 2.3 (%date% %time%) add mandatory packages for build 'msvc_runtime'.. still necessary ?>>%my_archive_log%
236+
echo 2.3 (%date% %time%) add mandatory packages for build 'msvc_runtime'.. still necessary ? 2024-12-22 dropped>>%my_archive_log%
237237
echo ---------------------------------------- >>%my_archive_log%
238238

239-
echo python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade
240-
echo python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade>>%my_archive_log%
241-
python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade
239+
rem echo python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade
240+
rem echo python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade>>%my_archive_log%
241+
rem python -m pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade
242242

243243

244244
echo ----------------------------------------

0 commit comments

Comments
 (0)
X Tutup