From cc3815cd6de06db072bd987dbacaa82f78a5e1e7 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 19 Jan 2026 23:40:13 +0100 Subject: [PATCH] remove hash inforcement for now --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 961ff0ba7d..4d8a823599 100644 --- a/tasks.py +++ b/tasks.py @@ -454,7 +454,7 @@ def run_install( '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 -r {install_file}') def yarn(c, cmd):