From 7ac5876545b02a81b6af8e8b16414bb2d9606f48 Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Tue, 10 Dec 2024 09:37:37 +0100 Subject: [PATCH] CI: don't upgrade generic env's python dependencies --- .ci/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/test.py b/.ci/test.py index a4f5ee742..06a3c63cf 100644 --- a/.ci/test.py +++ b/.ci/test.py @@ -135,7 +135,7 @@ def prepare_generic(p: Plugin, directory: Path, env: dict, workflow: str) -> boo if p.details["requirements"].exists(): print(f"Installing requirements from {p.details['requirements']}") subprocess.check_call( - [pip_path, "install", "-U", *pip_opts, "-r", p.details["requirements"]], + [pip_path, "install", *pip_opts, "-r", p.details["requirements"]], stderr=subprocess.STDOUT, )