2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-02-02 19:34:52 +00:00

more logging

This commit is contained in:
Matthias Mair
2026-01-19 23:33:25 +01:00
parent 43ad6685c3
commit 48545d6261

View File

@@ -430,7 +430,7 @@ def run_install(
) )
if install_file_vers.exists(): if install_file_vers.exists():
install_file = install_file_vers install_file = install_file_vers
info(f'Using version-specific requirements file: {install_file_vers}') info(f"Using version-specific requirements file '{install_file_vers}'")
info(f"Installing required python packages from '{install_file}'") info(f"Installing required python packages from '{install_file}'")
if not Path(install_file).is_file(): if not Path(install_file).is_file():
@@ -453,6 +453,7 @@ def run_install(
c, c,
'pip3 install --no-cache-dir --disable-pip-version-check -U uv setuptools', 'pip3 install --no-cache-dir --disable-pip-version-check -U uv setuptools',
) )
info('Installed package manager')
run(c, f'uv pip install -U --require-hashes -r {install_file}') run(c, f'uv pip install -U --require-hashes -r {install_file}')