Skip to content

Commit d2c9b80

Browse files
authored
Merge pull request winpython#1887 from stonebig/master
well, install-options of toml was not used
2 parents 00288d1 + 7d5dadd commit d2c9b80

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
call "C:\WinPdev\WPy64-310111\python-3.10.11.amd64\python.exe" build_winpython_meta.py %1
1+
cd /D %~dp0
2+
call "C:\WinPdev\WPy64-310111\python-3.10.11.amd64\python.exe" %~dp0\build_winpython_meta.py %1

winpython/build_winpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ def pip_install(python_exe: Path, req_file: str, constraints: str, find_links: s
4848
cmd = [
4949
str(python_exe), "-m", "pip", "install",
5050
"-r", req_file, "-c", constraints,
51-
"--pre", "--no-index", f"--find-links={find_links}"
51+
"--pre", "--no-index", f"--find-links={find_links}",
52+
"--upgrade"
5253
]
5354
log_section(f"Pip-install {label}")
5455
run_command(cmd)

0 commit comments

Comments
 (0)