Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion generate_a_winpython_distropy_meta.bat
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
call "C:\WinPdev\WPy64-310111\python-3.10.11.amd64\python.exe" build_winpython_meta.py %1
cd /D %~dp0
call "C:\WinPdev\WPy64-310111\python-3.10.11.amd64\python.exe" %~dp0\build_winpython_meta.py %1
3 changes: 2 additions & 1 deletion winpython/build_winpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def pip_install(python_exe: Path, req_file: str, constraints: str, find_links: s
cmd = [
str(python_exe), "-m", "pip", "install",
"-r", req_file, "-c", constraints,
"--pre", "--no-index", f"--find-links={find_links}"
"--pre", "--no-index", f"--find-links={find_links}",
"--upgrade"
]
log_section(f"Pip-install {label}")
run_command(cmd)
Expand Down