2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-02-02 11:24:51 +00:00

remove hash inforcement for now

This commit is contained in:
Matthias Mair
2026-01-19 23:40:13 +01:00
parent 7cfe5a28b9
commit cc3815cd6d

View File

@@ -454,7 +454,7 @@ def run_install(
'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') info('Installed package manager')
run(c, f'uv pip install -U --require-hashes -r {install_file}') run(c, f'uv pip install -U -r {install_file}')
def yarn(c, cmd): def yarn(c, cmd):