@@ -2,7 +2,7 @@ rem generate_a_winpython_distro.bat: to be launched from a winpython directory,
2
2
@ echo on
3
3
4
4
REM Initialize variables
5
- if " %my_release_level% " == " " set my_release_level = b1
5
+ if " %my_release_level% " == " " set my_release_level = b2
6
6
if " %my_create_installer% " == " " set my_create_installer = True
7
7
8
8
rem Set archive directory and log file
@@ -124,16 +124,18 @@ call %my_WINPYDIRBASE%\scripts\env.bat
124
124
rem generate pip freeze requirements
125
125
echo %date% %time%
126
126
set LOCKDIR = %WINPYDIRBASE% \..\
127
- set req = %LOCKDIR% requirement_%WINPYVER% _raw.txt
128
- set wanted_req = %LOCKDIR% requirement_%WINPYVER% .txt
129
- set pip_lock_web = %LOCKDIR% pylock_%WINPYVER% .toml
130
- set pip_lock_local = %LOCKDIR% pylock_%WINPYVER% _local.toml
131
- set req_lock_web = %LOCKDIR% requirement_with_hash_%WINPYVER% .txt
132
- set req_lock_local = %LOCKDIR% requirement_with_hash_%WINPYVER% _local.txt
133
-
134
- set my_archive_lockfile = %my_archive_dir% \pylock_%WINPYVER% _%date:/ =- % at_%my_time% .toml
135
- set my_archive_lockfile_local = %my_archive_dir% \pylock_%WINPYVER% _%date:/ =- % at_%my_time% _local.tml
136
- set my_changelog_lockfile = %~dp0 changelogs\pylock_%WINPYVER% .toml
127
+
128
+ set WINPYVERLOCK = %WINPYVER:. =_ %
129
+ set req = %LOCKDIR% requirement.%WINPYVERLOCK% _raw.txt
130
+ set wanted_req = %LOCKDIR% requirement.%WINPYVERLOCK% .txt
131
+ set pip_lock_web = %LOCKDIR% pylock.%WINPYVERLOCK% .toml
132
+ set pip_lock_local = %LOCKDIR% pylock.%WINPYVER% _local.toml
133
+ set req_lock_web = %LOCKDIR% requirement_with_hash.%WINPYVERLOCK% .txt
134
+ set req_lock_local = %LOCKDIR% requirement_with_hash.%WINPYVERLOCK% _local.txt
135
+
136
+ set my_archive_lockfile = %my_archive_dir% \pylock.%WINPYVERLOCK% _%date:/ =- % at_%my_time% .toml
137
+ set my_archive_lockfile_local = %my_archive_dir% \pylock.%WINPYVERLOCK% _%date:/ =- % at_%my_time% .local.toml
138
+ set my_changelog_lockfile = %~dp0 changelogs\pylock.%WINPYVERLOCK% .toml
137
139
138
140
python.exe -m pip freeze> %req%
139
141
findstr /v " winpython" %req% > %wanted_req%
0 commit comments