@@ -46,7 +46,7 @@ echo ------------------
46
46
echo 0.0 Initialize variables
47
47
echo ------------------
48
48
49
- if " %my_release_level% " == " " set my_release_level = b5
49
+ if " %my_release_level% " == " " set my_release_level = b4
50
50
51
51
set my_basedir = %my_root_dir_for_builds% \bd%my_python_target%
52
52
@@ -73,12 +73,17 @@ if %my_python_target%==310 (
73
73
)
74
74
75
75
if %my_python_target% == 311 (
76
- set my_python_target_release = 3115
77
- set my_release = 0
76
+ set my_python_target_release = 3118
77
+ set my_release = 1
78
78
)
79
79
80
80
if %my_python_target% == 312 (
81
- set my_python_target_release = 3120
81
+ set my_python_target_release = 3123
82
+ set my_release = 0
83
+ )
84
+
85
+ if %my_python_target% == 313 (
86
+ set my_python_target_release = 3130
82
87
set my_release = 0
83
88
)
84
89
@@ -259,6 +264,11 @@ echo ----------------------------->>%my_archive_log%
259
264
echo 2.3 add mandatory packages for build>> %my_archive_log%
260
265
echo %date% %time% >> %my_archive_log%
261
266
echo ----------------------------->> %my_archive_log%
267
+
268
+ rem D/2024-04-10: do not override "/vcruntime140_1.dll" with msvc_runtime wheel
269
+ rem echo python.exe -c "import sys;from pathlib import Path;f=open(Path(sys.prefix) / 'pyenv.cfg', 'w');f.write('include-system-site-packages = true\n');f.close">> %my_archive_log%
270
+ rem F/2024-04-10
271
+
262
272
rem D/2020-07-05: install msvc_runtime before packages that may want to compile
263
273
echo pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade
264
274
echo pip install msvc_runtime --pre --no-index --trusted-host=None --find-links=%my_find_links% --upgrade>> %my_archive_log%
@@ -287,9 +297,7 @@ echo pip install -r %my_requirements_pre% -c %my_constraints% --pre --no-index
287
297
echo if pip doesn't work, check the path of %my_WINPYDIRBASE%
288
298
289
299
pip install -r %my_requirements_pre% -c %my_constraints% --pre --no-index --trusted-host=None --find-links=%my_find_links_pre% --upgrade %new_resolver% >> %my_archive_log%
290
- )
291
- else
292
- (
300
+ ) else (
293
301
echo no packages pre_requirements
294
302
echo no packages pre_requirements>> %my_archive_log%
295
303
)
0 commit comments