From a7783c48ff7d488a94e7e2f7e78a1364af25783a Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sun, 22 Jan 2023 17:22:09 +0000 Subject: [PATCH] [PR #5868/098912c2 backport][stable-4] stormssh tests: do not install newer cryptography (#5870) stormssh tests: do not install newer cryptography (#5868) Do not install newer cryptography. ci_complete (cherry picked from commit 098912c2293febb91cfca14631784ccb72c4b774) Co-authored-by: Felix Fontein --- tests/integration/targets/ssh_config/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/integration/targets/ssh_config/tasks/main.yml b/tests/integration/targets/ssh_config/tasks/main.yml index 0d4c10a111..3b613cbee2 100644 --- a/tests/integration/targets/ssh_config/tasks/main.yml +++ b/tests/integration/targets/ssh_config/tasks/main.yml @@ -4,7 +4,9 @@ - name: Install required libs pip: - name: stormssh + name: + - stormssh + - 'paramiko<3.0.0' state: present extra_args: "-c {{ remote_constraints }}"