Skip to content

Commit

Permalink
CI: don't upgrade generic env's python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
daywalker90 authored and chrisguida committed Dec 10, 2024
1 parent 2674cb7 commit d6ce822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down

0 comments on commit d6ce822

Please sign in to comment.