update packages

This commit is contained in:
2025-06-22 17:08:08 +02:00
parent 54e5633369
commit 16a0a6db93
558 changed files with 68349 additions and 26568 deletions

View File

@@ -77,7 +77,8 @@ def install_deps_pip():
import venv
temp_dir = pathlib.Path(tempfile.mkdtemp())
venv.create(temp_dir, with_pip=True)
cmd = [temp_dir / 'bin' / 'pip', 'install', '--target', server_directory]
binname = 'Scripts' if sys.platform == 'win32' else 'bin'
cmd = [temp_dir / binname / 'pip', 'install', '--target', server_directory]
cmd.extend(missing_dependencies)
try:
subprocess.check_call(cmd)